diff options
author | 2001-10-04 04:23:26 +0000 | |
---|---|---|
committer | 2001-10-04 04:23:26 +0000 | |
commit | c11e9da0705ea776ecd27e3fdecaff08823222d1 (patch) | |
tree | 46bf4d4f421e883bea9adf7234345a023d2a68cc | |
parent | UKC on vax. (diff) | |
download | wireguard-openbsd-c11e9da0705ea776ecd27e3fdecaff08823222d1.tar.xz wireguard-openbsd-c11e9da0705ea776ecd27e3fdecaff08823222d1.zip |
Fix path to /bin/ls; ok millert
-rw-r--r-- | usr.bin/mail/pathnames.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mail/pathnames.h b/usr.bin/mail/pathnames.h index 3712c43a8ad..9aacc30190f 100644 --- a/usr.bin/mail/pathnames.h +++ b/usr.bin/mail/pathnames.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pathnames.h,v 1.5 2001/01/16 05:36:08 millert Exp $ */ +/* $OpenBSD: pathnames.h,v 1.6 2001/10/04 04:23:26 pvalchev Exp $ */ /* $NetBSD: pathnames.h,v 1.4 1996/06/08 19:48:34 christos Exp $ */ /* @@ -42,7 +42,7 @@ /* executables */ #define _PATH_EX "/usr/bin/ex" #define _PATH_MORE "/usr/bin/more" -#define _PATH_LS "/usr/bin/ls" +#define _PATH_LS "/bin/ls" #define _PATH_LOCKSPOOL "/usr/libexec/lockspool" /* directories & files */ |