ssl_store_cert(): Fix format specifier and typo in an error message
[privoxy.git] / openssl.c
index 61e96d3..0005ed5 100644 (file)
--- a/openssl.c
+++ b/openssl.c
@@ -301,7 +301,7 @@ static int ssl_store_cert(struct client_state *csp, X509* crt)
    if (len > (sizeof(last->file_buf) - 1))
    {
       log_error(LOG_LEVEL_ERROR,
-         "X509 PEM cert len %d is larger then buffer len %s",
+         "X509 PEM cert len %d is larger than buffer len %d",
          len, sizeof(last->file_buf) - 1);
       len = sizeof(last->file_buf) - 1;
    }