From a5d07704d045c4a775b72a539c7d7c90b0c1ac63 Mon Sep 17 00:00:00 2001 From: oes Date: Fri, 24 Oct 2003 10:17:54 +0000 Subject: [PATCH] Nit: Allowed tabs as separators in filter headings --- loaders.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) 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)); -- 2.50.1