From 8f7876423c8bd6b871051791f0ca5fb90b83d58e Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Wed, 27 Feb 2002 00:58:17 +0000 Subject: [PATCH] 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 --- ssl_engine_log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.47.2