| Update of /cvsroot/srvx/services/src
In directory sc8-pr-cvs1:/tmp/cvs-serv5451/src
Modified Files:
	log.c 
Log Message:
Fix the new logger getting stuck in an infinite loop.
Index: log.c
===================================================================
RCS file: /cvsroot/srvx/services/src/log.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -C2 -r1.50 -r1.51
*** log.c	7 Jul 2003 16:29:33 -0000	1.50
--- log.c	8 Jul 2003 00:51:33 -0000	1.51
***************
*** 245,251 ****
          if (cont) *cont++ = 0;
          if (buffer[0] == '*' && buffer[1] == 0) {
!             for (bound = 0; bound < LOG_NUM_SEVERITIES; ) {
                  /* make people explicitly specify replay targets */
!                 if (bound != LOG_REPLAY) targets[bound++] = 1;
              }
          } else if (buffer[0] == '<') {
--- 245,251 ----
          if (cont) *cont++ = 0;
          if (buffer[0] == '*' && buffer[1] == 0) {
!             for (bound = 0; bound < LOG_NUM_SEVERITIES; bound++) {
                  /* make people explicitly specify replay targets */
!                 if (bound != LOG_REPLAY) targets[bound] = 1;
              }
          } else if (buffer[0] == '<') {
 |