diff options
author | 2004-12-18 22:43:58 +0000 | |
---|---|---|
committer | 2004-12-18 22:43:58 +0000 | |
commit | eef75147b91827b00165bd93f420d4e6a151e4ac (patch) | |
tree | 9bb6b0a48534175670530b11eab81861d3321a0b | |
parent | remove GCC_FUNC_ATTR/GCC_FUNC_ATTR2 and just use __attribute__ directly (diff) | |
download | wireguard-openbsd-eef75147b91827b00165bd93f420d4e6a151e4ac.tar.xz wireguard-openbsd-eef75147b91827b00165bd93f420d4e6a151e4ac.zip |
Use _PATH_BSHELL instead of hardcoding "/bin/sh"
-rw-r--r-- | bin/ksh/sh.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/ksh/sh.h b/bin/ksh/sh.h index fbe09f9e5f7..65b083cfbee 100644 --- a/bin/ksh/sh.h +++ b/bin/ksh/sh.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sh.h,v 1.23 2004/12/18 22:11:43 millert Exp $ */ +/* $OpenBSD: sh.h,v 1.24 2004/12/18 22:43:58 millert Exp $ */ /* * Public Domain Bourne/Korn shell @@ -44,7 +44,7 @@ # define EXTERN_DEFINED #endif -#define EXECSHELL "/bin/sh" +#define EXECSHELL _PATH_BSHELL #define EXECSHELL_STR "EXECSHELL" typedef int bool_t; |