From 2fb69002eec46c3860b28138af2b8b5dbe50773a Mon Sep 17 00:00:00 2001 From: "David E. O'Brien" Date: Sun, 1 Feb 2009 00:50:46 +0000 Subject: [PATCH] Also un-split _PATH_STDPATH for grepability. While I'm here, fix other style bugs reported to me. --- include/paths.h | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/include/paths.h b/include/paths.h index 2d85f2d9eeaf..a8a68a036dc2 100644 --- a/include/paths.h +++ b/include/paths.h @@ -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"