Subject: NetBSD master CVS tree commits
To: None <source-changes@NetBSD.ORG>
From: The Source of All Evil <source@NetBSD.ORG>
List: source-changes
Date: 06/19/1998 16:00:01
kleink
Fri Jun 19 15:53:58 PDT 1998
Update of /cvsroot/src/lib/libc/gen
In directory nb00:/tmp/cvs-serv11478
Modified Files:
glob.3 __glob13.c
Log Message:
* Remove GLOB_QUOTE, add GLOB_NOESCAPE. Per POSIX, backslash quoting of
special characters is the default behaviour, which may be disabled by
setting GLOB_NOESCAPE.
* If no matching pathnames have been found and GLOB_NOCHECK was not set
(or special csh(1)-specific treatment of magic characters was requested),
return GLOB_NOMATCH instead of 0; the latter would indicate a successful
operation.
* Use strcoll() instead of strcmp() to sort globbed pathnames.
kleink
Fri Jun 19 15:58:05 PDT 1998
Update of /cvsroot/src/bin/csh
In directory nb00:/tmp/cvs-serv11618
Modified Files:
glob.c
Log Message:
GLOB_QUOTE is dead; per POSIX, backslash quoting of special characters being
enabled is the default behaviour.
kleink
Fri Jun 19 15:59:01 PDT 1998
Update of /cvsroot/src/libexec/ftpd
In directory nb00:/tmp/cvs-serv11741
Modified Files:
ftpd.c popen.c
Log Message:
GLOB_QUOTE is dead; per POSIX, backslash quoting of special characters being
enabled is the default behaviour.