1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-05 16:55:50 +03:00

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
This commit is contained in:
Ryan Bloom
2002-02-27 00:58:17 +00:00
parent b8c76eed10
commit 1fc3677924

View 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;
}