randy 97/08/25 07:53:41
Modified: src/main http_log.c
Log:
Comment out syslog support temporarily until I can come up with a more
portable option.
Revision Changes Path
1.25 +2 -0 apachen/src/main/http_log.c
Index: http_log.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/http_log.c,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- http_log.c 1997/08/25 14:26:29 1.24
+++ http_log.c 1997/08/25 14:53:39 1.25
@@ -248,12 +248,14 @@
vfprintf(r->server->error_log, fmt, args);
fflush(r->server->error_log);
}
+#ifdef NOTYET
else {
if (errstr)
syslog(level, "%s", errstr);
vsyslog(level, fmt, args);
}
+#endif
va_end(args);
}