[Libsysio-commit] RELEASE_1_3: libsysio/src init.c
Brought to you by:
lward
From: Lee W. <lw...@us...> - 2007-09-26 19:41:43
|
Update of /cvsroot/libsysio/libsysio/src In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv13912 Modified Files: Tag: RELEASE_1_3 init.c Log Message: >From Bob Glossman (bo...@cr...): Simplification and removal of a constant check in the namespace boot parsing. Index: init.c =================================================================== RCS file: /cvsroot/libsysio/libsysio/src/init.c,v retrieving revision 1.38 retrieving revision 1.38.2.1 diff -u -w -b -B -p -r1.38 -r1.38.2.1 --- init.c 20 Aug 2007 19:12:08 -0000 1.38 +++ init.c 26 Sep 2007 19:41:39 -0000 1.38.2.1 @@ -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) { /* |