X-Git-Url: https://ruderich.org/simon/gitweb/?a=blobdiff_plain;f=src%2Fverify.c;fp=src%2Fverify.c;h=f546fd42e2cb9d2982cea39a0c0a6fd8b112b6a0;hb=ceebf9e917885f33396b93504943d7b8e63e782b;hp=1df9b511686b8e2f17447513ffe45e53c1f7c434;hpb=dc3567be34b6438f6cb29490fa404dce5dd6efc3;p=tlsproxy%2Ftlsproxy.git diff --git a/src/verify.c b/src/verify.c index 1df9b51..f546fd4 100644 --- a/src/verify.c +++ b/src/verify.c @@ -114,7 +114,7 @@ int verify_tls_connection(gnutls_session_t session, const char *hostname) { gnutls_x509_crt_deinit(cert); /* Open stored server certificate file. */ - if (0 != server_certificate_path(&file, hostname, path, sizeof(path))) { + if (0 != server_certificate_file(&file, hostname, path, sizeof(path))) { LOG(LOG_DEBUG, "server certificate:\n%s", server_cert); return -1; } @@ -196,12 +196,12 @@ int proxy_certificate_path(const char *hostname, char *path, size_t size) { hostname, path, size); } -int server_certificate_path(FILE **file, const char *hostname, +int server_certificate_file(FILE **file, const char *hostname, char *path, size_t size) { if (0 != get_certificate_path(STORED_SERVER_CERT_FORMAT, hostname, path, size)) { LOG_PERROR(LOG_ERROR, - "server_certificate_path(): failed to get path"); + "server_certificate_file(): failed to get path"); return -1; } @@ -210,11 +210,11 @@ int server_certificate_path(FILE **file, const char *hostname, if (NULL == *file) { if (global_passthrough_unknown) { LOG(LOG_DEBUG, - "server_certificate_path(): failed to open '%s': %s", + "server_certificate_file(): failed to open '%s': %s", path, strerror(errno)); } else { LOG(LOG_WARNING, - "server_certificate_path(): failed to open '%s': %s", + "server_certificate_file(): failed to open '%s': %s", path, strerror(errno)); } /* Couldn't open the file, special case. */