diff options
author | obrien <obrien@FreeBSD.org> | 2009-01-26 17:09:26 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2009-01-26 17:09:26 +0000 |
commit | e611096d7b370ef979a0df39a449c94abbafc74b (patch) | |
tree | b1c2e0d66bcaee5725d2d03f3327d6c2a2499239 | |
parent | afd79b014fb094ddd0a64a1a3959dafc4150c0c9 (diff) | |
download | FreeBSD-src-e611096d7b370ef979a0df39a449c94abbafc74b.zip FreeBSD-src-e611096d7b370ef979a0df39a449c94abbafc74b.tar.gz |
No need to wrap _PATH_SYSPATH. It makes it harder to grep(1) for its
value. (also unwrapping better matches existing style)
-rw-r--r-- | include/paths.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/paths.h b/include/paths.h index 69990a6..2d85f2d 100644 --- a/include/paths.h +++ b/include/paths.h @@ -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" |