From: Simon Ruderich Date: Thu, 2 Jan 2014 15:06:10 +0000 (+0100) Subject: connection.c: Fix minor documentation typo. X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=70dfaa55b611838c956f700b5f47b2c2753988f1 connection.c: Fix minor documentation typo. --- diff --git a/src/connection.c b/src/connection.c index 184ee5a..fb854da 100644 --- a/src/connection.c +++ b/src/connection.c @@ -102,9 +102,9 @@ void handle_connection(int client_socket) { int version_minor; /* x in HTTP/1.x */ int result; - /* client_x509_cred is used when talking to the client (acting as a TSL + /* client_x509_cred is used when talking to the client (acting as a TLS * server), server_x509_cred is used when talking to the server (acting as - * a TSL client). */ + * a TLS client). */ gnutls_certificate_credentials_t client_x509_cred, server_x509_cred; gnutls_session_t client_session, server_session;