From: oes <oes@users.sourceforge.net>
Date: Sat, 16 Mar 2002 20:29:14 +0000 (+0000)
Subject: Cosmetics
X-Git-Tag: v_2_9_12~32
X-Git-Url: http://www.privoxy.org/gitweb/%22https:/developer-manual/faq/@default-cgi@/@default-cgi@show-url-info?a=commitdiff_plain;h=a90476caaea41cabf25cf48c85c324b482989dff;p=privoxy.git
Cosmetics
---
diff --git a/filters.c b/filters.c
index c2e7030d..4fc07a25 100644
--- a/filters.c
+++ b/filters.c
@@ -1,4 +1,4 @@
-const char filters_rcs[] = "$Id: filters.c,v 1.47 2002/03/13 00:30:52 jongfoster Exp $";
+const char filters_rcs[] = "$Id: filters.c,v 1.48 2002/03/13 20:25:34 oes Exp $";
/*********************************************************************
*
* File : $Source: /cvsroot/ijbswa/current/filters.c,v $
@@ -38,6 +38,9 @@ const char filters_rcs[] = "$Id: filters.c,v 1.47 2002/03/13 00:30:52 jongfoster
*
* Revisions :
* $Log: filters.c,v $
+ * Revision 1.48 2002/03/13 20:25:34 oes
+ * Better logging for content filters
+ *
* Revision 1.47 2002/03/13 00:30:52 jongfoster
* Killing warnings
* Added option of always sending redirect for imageblock,
@@ -1295,18 +1298,18 @@ char *pcrs_filter_response(struct client_state *csp)
for (filtername = csp->action->multi[ACTION_MULTI_FILTER]->first;
filtername ; filtername = filtername->next)
{
- if (strcmp(b->filtername, filtername->str) == 0)
+ if (strcmp(b->name, filtername->str) == 0)
{
int current_hits = 0;
if ( NULL == b->joblist )
{
- log_error(LOG_LEVEL_RE_FILTER, "Filter %s has empty joblist. Nothing to do.", b->filtername);
+ log_error(LOG_LEVEL_RE_FILTER, "Filter %s has empty joblist. Nothing to do.", b->name);
return(NULL);
}
log_error(LOG_LEVEL_RE_FILTER, "re_filtering %s%s (size %d) with filter %s...",
- csp->http->hostport, csp->http->path, size, b->filtername);
+ csp->http->hostport, csp->http->path, size, b->name);
/* Apply all jobs from the joblist */
for (job = b->joblist; NULL != job; job = job->next)