diff options
author | 1996-11-02 05:35:24 +0000 | |
---|---|---|
committer | 1996-11-02 05:35:24 +0000 | |
commit | 93d3349b719dc714b7c8d81b5603cf607dd5abef (patch) | |
tree | 0c8177fef3c7b8e4dc31a3627eadd2122c71fbae | |
parent | Fix eval of $1, a typo, and a thinko. (diff) | |
download | wireguard-openbsd-93d3349b719dc714b7c8d81b5603cf607dd5abef.tar.xz wireguard-openbsd-93d3349b719dc714b7c8d81b5603cf607dd5abef.zip |
Remove /usr/contrib/bin and /usr/old/bin from _PATH_STDPATH
-rw-r--r-- | include/paths.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/paths.h b/include/paths.h index 4838febf5ce..a1144733091 100644 --- a/include/paths.h +++ b/include/paths.h @@ -1,3 +1,4 @@ +/* $OpenBSD: paths.h,v 1.4 1996/11/02 05:35:24 tholo Exp $ */ /* $NetBSD: paths.h,v 1.7 1994/10/26 00:56:12 cgd Exp $ */ /* @@ -41,8 +42,7 @@ /* Default search path. */ #define _PATH_DEFPATH "/usr/bin:/bin" /* All standard utilities path. */ -#define _PATH_STDPATH \ - "/usr/bin:/bin:/usr/sbin:/sbin:/usr/contrib/bin:/usr/old/bin" +#define _PATH_STDPATH "/usr/bin:/bin:/usr/sbin:/sbin" #define _PATH_BSHELL "/bin/sh" #define _PATH_CONSOLE "/dev/console" |