]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
src/connection.c: Minor cleanup.
authorSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 19:42:52 +0000 (21:42 +0200)
committerSimon Ruderich <simon@ruderich.org>
Sat, 17 Sep 2011 19:42:52 +0000 (21:42 +0200)
src/connection.c

index 0a69f78b228e1b4e64af911bdd4fe8ace64f1fbf..700a3548345398a436aaf9a26b5144714e85f230 100644 (file)
@@ -357,7 +357,7 @@ static int initialize_tls_session_client(int peer_socket,
 
     /* The "invalid" hostname is special. If it's used we send an invalid
      * certificate to let the client know something is wrong. */
-    use_invalid_cert = 0 == strcmp(hostname, "invalid");
+    use_invalid_cert = (0 == strcmp(hostname, "invalid"));
 
     if (0 != proxy_certificate_path(hostname, path, sizeof(path))) {
         LOG(LOG_ERROR,
@@ -512,7 +512,7 @@ static int read_http_request(FILE *client_fd, char *request, size_t length) {
         return -2;
     }
 
-    while (NULL != fgets(buffer, MAX_REQUEST_LINE, client_fd)) {
+    while (NULL != fgets(buffer, sizeof(buffer), client_fd)) {
         /* End of header. */
         if (0 == strcmp(buffer, "\n") || 0 == strcmp(buffer, "\r\n")) {
             break;