Nit: Allowed tabs as separators in filter headings
authoroes <oes@users.sourceforge.net>
Fri, 24 Oct 2003 10:17:54 +0000 (10:17 +0000)
committeroes <oes@users.sourceforge.net>
Fri, 24 Oct 2003 10:17:54 +0000 (10:17 +0000)
loaders.c

index 35a910e..d533c39 100644 (file)
--- 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));