Browse Source

Fixed error logging in set_ssl_option()

Sergey Lyubka 13 years ago
parent
commit
4a5e1ecf92
1 changed files with 2 additions and 2 deletions
  1. 2 2
      mongoose.c

+ 2 - 2
mongoose.c

@@ -3772,12 +3772,12 @@ static int set_ssl_option(struct mg_context *ctx) {
   }
   if (ctx->ssl_ctx != NULL && pem != NULL &&
       SSL_CTX_use_PrivateKey_file(ctx->ssl_ctx, pem, SSL_FILETYPE_PEM) == 0) {
-    cry(fc(ctx), "%s: cannot open %s: %s", NULL, pem, ssl_error());
+    cry(fc(ctx), "%s: cannot open %s: %s", __func__, pem, ssl_error());
     return 0;
   }
   if (ctx->ssl_ctx != NULL && chain != NULL &&
       SSL_CTX_use_certificate_chain_file(ctx->ssl_ctx, chain) == 0) {
-    cry(fc(ctx), "%s: cannot open %s: %s", NULL, chain, ssl_error());
+    cry(fc(ctx), "%s: cannot open %s: %s", __func__, chain, ssl_error());
     return 0;
   }