]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
connection.c: Fix minor documentation typo.
authorSimon Ruderich <simon@ruderich.org>
Thu, 2 Jan 2014 15:06:10 +0000 (16:06 +0100)
committerSimon Ruderich <simon@ruderich.org>
Thu, 2 Jan 2014 15:06:10 +0000 (16:06 +0100)
src/connection.c

index 184ee5a4231a302ee520dfecb05b845cdde0e4bb..fb854da4536937ae43f136ff6f418cbbaf776698 100644 (file)
@@ -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;