svn commit: r187724 - head/include
David E. O'Brien
obrien at FreeBSD.org
Mon Jan 26 09:09:30 PST 2009
Author: obrien
Date: Mon Jan 26 17:09:26 2009
New Revision: 187724
URL: http://svn.freebsd.org/changeset/base/187724
Log:
No need to wrap _PATH_SYSPATH. It makes it harder to grep(1) for its
value. (also unwrapping better matches existing style)
Modified:
head/include/paths.h
Modified: head/include/paths.h
==============================================================================
--- head/include/paths.h Mon Jan 26 17:00:58 2009 (r187723)
+++ head/include/paths.h Mon Jan 26 17:09:26 2009 (r187724)
@@ -45,8 +45,7 @@
#define _PATH_STDPATH \
"/usr/bin:/bin:/usr/sbin:/sbin:"
/* Locate system binaries */
-#define _PATH_SYSPATH \
- "/sbin:/usr/sbin"
+#define _PATH_SYSPATH "/sbin:/usr/sbin"
#define _PATH_AUTHCONF "/etc/auth.conf"
#define _PATH_BSHELL "/bin/sh"
More information about the svn-src-all
mailing list