From: oes Date: Fri, 24 Oct 2003 10:17:54 +0000 (+0000) Subject: Nit: Allowed tabs as separators in filter headings X-Git-Tag: v_3_0_3~71 X-Git-Url: http://www.privoxy.org/gitweb/?a=commitdiff_plain;h=a5d07704d045c4a775b72a539c7d7c90b0c1ac63;p=privoxy.git Nit: Allowed tabs as separators in filter headings --- diff --git a/loaders.c b/loaders.c index 35a910ec..d533c391 100644 --- a/loaders.c +++ b/loaders.c @@ -1,4 +1,4 @@ -const char loaders_rcs[] = "$Id: loaders.c,v 1.50.2.4 2003/05/06 15:57:12 oes Exp $"; +const char loaders_rcs[] = "$Id: loaders.c,v 1.50.2.5 2003/05/08 15:19:15 oes Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/Attic/loaders.c,v $ @@ -35,6 +35,9 @@ const char loaders_rcs[] = "$Id: loaders.c,v 1.50.2.4 2003/05/06 15:57:12 oes Ex * * Revisions : * $Log: loaders.c,v $ + * Revision 1.50.2.5 2003/05/08 15:19:15 oes + * sweep: Made loop structure of sweep step mirror that of mark step + * * Revision 1.50.2.4 2003/05/06 15:57:12 oes * Bugfix: Update last_active pointer in sweep() before * leaving an active client. Closes bugs #724395, #727882 @@ -1320,7 +1323,7 @@ int load_re_filterfile(struct client_state *csp) new_bl->name = chomp(buf + 7); - if (NULL != (new_bl->description = strchr(new_bl->name, ' '))) + if (NULL != (new_bl->description = strpbrk(new_bl->name, " \t"))) { *new_bl->description++ = '\0'; new_bl->description = strdup(chomp(new_bl->description));