X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=errlog.c;h=fad5d6e5a74baa0bcd782638cc858dedbe652362;hb=83a36343155a2f17d29ff1c706809bf56382a9ec;hp=7f289e8c9b8684cc8cc2d28b8d89231918384e3f;hpb=cb62d9e2052d3ef52c0110ce188efbf8abbb705e;p=privoxy.git diff --git a/errlog.c b/errlog.c index 7f289e8c..fad5d6e5 100644 --- a/errlog.c +++ b/errlog.c @@ -1,4 +1,4 @@ -const char errlog_rcs[] = "$Id: errlog.c,v 1.17 2001/09/10 10:17:13 oes Exp $"; +const char errlog_rcs[] = "$Id: errlog.c,v 1.18 2001/09/10 11:27:24 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $ @@ -33,6 +33,9 @@ const char errlog_rcs[] = "$Id: errlog.c,v 1.17 2001/09/10 10:17:13 oes Exp $"; * * Revisions : * $Log: errlog.c,v $ + * Revision 1.18 2001/09/10 11:27:24 oes + * Declaration of w32_socket_strerr now conditional + * * Revision 1.17 2001/09/10 10:17:13 oes * Removed unused variable; Fixed sprintf format * @@ -364,6 +367,9 @@ void log_error(int loglevel, char *fmt, ...) outc = sprintf(outbuf, "IJB(%ld) Kill-Popups: ", this_thread); break; #endif /* def FEATURE_KILL_POPUPS */ + case LOG_LEVEL_CGI: + outc = sprintf(outbuf, "IJB(%d) CGI: ", this_thread); + break; default: outc = sprintf(outbuf, "IJB(%ld) UNKNOWN LOG TYPE(%d): ", this_thread, loglevel); break;