From: Simon Ruderich Date: Tue, 10 Dec 2013 13:17:11 +0000 (+0100) Subject: Minor source documentation updates. X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=1628e631d4c9609d037935d0a3229c2241d238ca Minor source documentation updates. --- diff --git a/src/connection.c b/src/connection.c index 4538f75..2c70b7d 100644 --- a/src/connection.c +++ b/src/connection.c @@ -207,7 +207,7 @@ void handle_connection(int client_socket) { LOG(DEBUG1, "connection to server established"); /* If the -u option is used and we don't know this hostname's server - * certificate then just pass through the connection and let the client + * certificate, then just pass through the connection and let the client * verify the server certificate. */ if (global_passthrough_unknown) { char path[TLSPROXY_MAX_PATH_LENGTH]; diff --git a/src/tlsproxy.h b/src/tlsproxy.h index 15c5a51..692278e 100644 --- a/src/tlsproxy.h +++ b/src/tlsproxy.h @@ -35,7 +35,7 @@ /* Length for path arrays. */ #define TLSPROXY_MAX_PATH_LENGTH 1024 -/* Paths to necessary TLS files: the CA, the server key and DH parameters. */ +/* Paths to proxy files: the CA, the server key and DH parameters. */ #define PROXY_CA_PATH "proxy-ca.pem" #define PROXY_KEY_PATH "proxy-key.pem" #define PROXY_DH_PATH "proxy-dh.pem"