platforms.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93582
13f79535-47bb-0310-9956-
ffa450edef68
#include "util_script.h"
#include "util_filter.h"
#include "mpm.h"
+#include "apr.h"
#include "apr_strings.h"
#include "apr_tables.h"
#include "apr_lib.h"
char lstr[20];
char vstr[1024];
char str[1024];
- char nstr[2];
+ char *nstr;
apr_size_t len;
apr_exploded_time_t t;
va_list ap;
/* determine whether newline should be written */
if (add & SSL_NO_NEWLINE)
- nstr[0] = NUL;
+ nstr = NUL;
else {
- nstr[0] = '\n';
- nstr[1] = NUL;
+ nstr = APR_EOL_STR;
}
/* determine level name */