svn commit: r187969 - head/include

David E. O'Brien obrien at FreeBSD.org
Sat Jan 31 16:50:48 PST 2009


Author: obrien
Date: Sun Feb  1 00:50:46 2009
New Revision: 187969
URL: http://svn.freebsd.org/changeset/base/187969

Log:
  Also un-split _PATH_STDPATH for grepability.
  While I'm here, fix other style bugs reported to me.

Modified:
  head/include/paths.h

Modified: head/include/paths.h
==============================================================================
--- head/include/paths.h	Sat Jan 31 23:17:33 2009	(r187968)
+++ head/include/paths.h	Sun Feb  1 00:50:46 2009	(r187969)
@@ -42,10 +42,9 @@
 /* Default search path. */
 #define	_PATH_DEFPATH	"/usr/bin:/bin"
 /* All standard utilities path. */
-#define	_PATH_STDPATH \
-	"/usr/bin:/bin:/usr/sbin:/sbin:"
-/* Locate system binaries */
-#define _PATH_SYSPATH	"/sbin:/usr/sbin"
+#define	_PATH_STDPATH	"/usr/bin:/bin:/usr/sbin:/sbin:"
+/* Locate system binaries. */
+#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