From: Fabian Keil Date: Sun, 14 Jun 2009 15:59:56 +0000 (+0000) Subject: In get_log_level_string(), don't hide the LOG_LEVEL_REDIRECTS X-Git-Tag: v_3_0_14~100 X-Git-Url: http://www.privoxy.org/gitweb/templates.html?a=commitdiff_plain;h=ad3b7c61dc2dd9acd321cbcb74f1799ee3e9bbc9;p=privoxy.git In get_log_level_string(), don't hide the LOG_LEVEL_REDIRECTS translation behind ifdef FEATURE_FAST_REDIRECTS. It's used for redirect{} as well. --- diff --git a/errlog.c b/errlog.c index a6b47745..1389fedc 100644 --- a/errlog.c +++ b/errlog.c @@ -1,4 +1,4 @@ -const char errlog_rcs[] = "$Id: errlog.c,v 1.95 2009/05/28 17:07:42 fabiankeil Exp $"; +const char errlog_rcs[] = "$Id: errlog.c,v 1.96 2009/05/28 21:13:34 fabiankeil Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/errlog.c,v $ @@ -574,11 +574,9 @@ static inline const char *get_log_level_string(int loglevel) log_level_string = "Force"; break; #endif /* def FEATURE_FORCE_LOAD */ -#ifdef FEATURE_FAST_REDIRECTS case LOG_LEVEL_REDIRECTS: log_level_string = "Redirect"; break; -#endif /* def FEATURE_FAST_REDIRECTS */ case LOG_LEVEL_DEANIMATE: log_level_string = "Gif-Deanimate"; break;