]> granicus.if.org Git - apache/commitdiff
Use the empty string, not NUL. I should have read my code more closely.
authorRyan Bloom <rbb@apache.org>
Wed, 27 Feb 2002 00:58:17 +0000 (00:58 +0000)
committerRyan Bloom <rbb@apache.org>
Wed, 27 Feb 2002 00:58:17 +0000 (00:58 +0000)
Thanks Cliff for slapping me in the head.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93583 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_log.c

index 0c0615a36750badf9d8a2f746c89df10630bb39d..f367ccb6959b51847e983e668710b403e7881e51 100644 (file)
@@ -215,7 +215,7 @@ void ssl_log(server_rec *s, int level, const char *msg, ...)
 
     /*  determine whether newline should be written */
     if (add & SSL_NO_NEWLINE)
-        nstr = NUL;
+        nstr = "";
     else {
         nstr = APR_EOL_STR;
     }