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/?a=commitdiff_plain;h=8f7876423c8bd6b871051791f0ca5fb90b83d58e;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/modules/ssl@93583 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/ssl_engine_log.c b/ssl_engine_log.c index 0c0615a3675..f367ccb6959 100644 --- a/ssl_engine_log.c +++ b/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; }