[Libsysio-commit] HEAD: libsysio/src init.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2007-09-26 19:46:29
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv16384 Modified Files: init.c Log Message: >From Bob Glossman (bo...@cr...): Simplified and removed a constant check in the namespace boot parser. Index: init.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/init.c,v retrieving revision 1.38 retrieving revision 1.39 diff -u -w -b -B -p -r1.38 -r1.39 --- init.c 20 Aug 2007 19:12:08 -0000 1.38 +++ init.c 26 Sep 2007 19:46:25 -0000 1.39 @@ -830,8 +830,7 @@ _sysio_boot_namespace(const char *arg) /* * Discard leading white space. */ - while ((c = *arg) != '\0' && - !(c == '{' || strchr(IGNORE_WHITE, c) == NULL)) + while ((c = *arg) != '\0' && strchr(IGNORE_WHITE, c)) arg++; if (COMMENT_INTRO == c) { /* |