X-Git-Url: http://www.privoxy.org/gitweb/?p=privoxy.git;a=blobdiff_plain;f=errlog.c;h=22f5ae4a062aa7a7863d1304b0a457f5c6cff079;hp=c69b8d715f06d8ac1b960f6cd16997447d943f6a;hb=962ed628ec708d487afd1494813141fc048143d6;hpb=44e93e6343f9fe1deb9ad4852683fe5ca8e9a01b diff --git a/errlog.c b/errlog.c index c69b8d71..22f5ae4a 100644 --- a/errlog.c +++ b/errlog.c @@ -1,4 +1,4 @@ -const char errlog_rcs[] = "$Id: errlog.c,v 1.82 2008/11/23 16:06:58 fabiankeil Exp $"; +const char errlog_rcs[] = "$Id: errlog.c,v 1.83 2008/12/04 18:14:32 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $ @@ -33,6 +33,9 @@ const char errlog_rcs[] = "$Id: errlog.c,v 1.82 2008/11/23 16:06:58 fabiankeil E * * Revisions : * $Log: errlog.c,v $ + * Revision 1.83 2008/12/04 18:14:32 fabiankeil + * Fix some cparser warnings. + * * Revision 1.82 2008/11/23 16:06:58 fabiankeil * Update a log message I missed in 1.80. * @@ -952,6 +955,9 @@ static inline const char *get_log_level_string(int loglevel) case LOG_LEVEL_DEANIMATE: log_level_string = "Gif-Deanimate"; break; + case LOG_LEVEL_CRUNCH: + log_level_string = "Crunch"; + break; case LOG_LEVEL_CGI: log_level_string = "CGI"; break; @@ -1002,7 +1008,7 @@ void log_error(int loglevel, const char *fmt, ...) * the taskbar icon animate. (There is an option to disable * this but checking that is handled inside LogShowActivity()). */ - if (loglevel == LOG_LEVEL_GPC) + if ((loglevel == LOG_LEVEL_GPC) || (loglevel == LOG_LEVEL_CRUNCH)) { LogShowActivity(); }