aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfusion32 <marcopuzziello@gmail.com>2026-07-25 08:55:42 -0300
committerfusion32 <marcopuzziello@gmail.com>2026-07-25 08:55:42 -0300
commitaef5e1605a25c891b4d648ffc87a6da556077e2e (patch)
treefcf2a9269b3e291772b4be3dd426f31b1091524e
parentf1c839fe7c0334fa036549a641487f21205d0129 (diff)
downloadlogin-aef5e1605a25c891b4d648ffc87a6da556077e2e.tar.gz
login-aef5e1605a25c891b4d648ffc87a6da556077e2e.zip
fix format specifier in DumpOpenSSLErrorsHEADmaster
-rw-r--r--src/crypto.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crypto.cc b/src/crypto.cc
index 6e50b33..a8413b8 100644
--- a/src/crypto.cc
+++ b/src/crypto.cc
@@ -17,7 +17,7 @@ static void DumpOpenSSLErrors(const char *Where, const char *What){
}
if(len > 0){
- LOG_ERR("> %*s", (int)len, str);
+ LOG_ERR("> %.*s", (int)len, str);
}
return 1;