From: Ryan Bloom Date: Wed, 27 Feb 2002 00:58:17 +0000 (+0000) Subject: Use the empty string, not NUL. I should have read my code more closely. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59da1b87966a98f8ba2afe0ae2742614c915729e;p=thirdparty%2Fapache%2Fhttpd.git Use the empty string, not NUL. I should have read my code more closely. 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 --- diff --git a/modules/ssl/ssl_engine_log.c b/modules/ssl/ssl_engine_log.c index 0c0615a3675..f367ccb6959 100644 --- a/modules/ssl/ssl_engine_log.c +++ b/modules/ssl/ssl_engine_log.c @@ -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; }