diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-18 22:43:59 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-12-18 22:43:59 +0000 |
commit | 3543e4bd79f623fa87789145e5d711d58ea43a2f (patch) | |
tree | 4fe2940eaf1663375a3083cb62e0f06fff88b2af /bin/ksh/sh.h | |
parent | 8677fe28d1be552d8ed7fe8a200da3c727ec41ff (diff) |
Use _PATH_BSHELL instead of hardcoding "/bin/sh"
Diffstat (limited to 'bin/ksh/sh.h')
-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; |