summaryrefslogtreecommitdiff
path: root/zen/open_ssl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'zen/open_ssl.cpp')
-rw-r--r--zen/open_ssl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/zen/open_ssl.cpp b/zen/open_ssl.cpp
index af4306b2..5cfd7f12 100644
--- a/zen/open_ssl.cpp
+++ b/zen/open_ssl.cpp
@@ -387,7 +387,7 @@ void zen::verifySignature(const std::string_view message, const std::string_view
bool zen::isPuttyKeyStream(const std::string_view keyStream)
{
- return startsWith(trimCpy(keyStream, true, false), "PuTTY-User-Key-File-");
+ return startsWith(trimCpy(keyStream, TrimSide::left), "PuTTY-User-Key-File-");
}
bgstack15