diff options
author | 1997-07-22 04:42:06 +0000 | |
---|---|---|
committer | 1997-07-22 04:42:06 +0000 | |
commit | e81fa67ad7c3450598df5395b1010b026add7801 (patch) | |
tree | 8637bad9caafd372da1dabd8fa0bf410dd0a2fdf | |
parent | Define _PATH_REMSH to _PATH_RSH (diff) | |
download | wireguard-openbsd-e81fa67ad7c3450598df5395b1010b026add7801.tar.xz wireguard-openbsd-e81fa67ad7c3450598df5395b1010b026add7801.zip |
Fix _PATH_REMSH for real. We have <paths.h> so use it and define
_PATH_REMSH to _PATH_RSH.
-rw-r--r-- | usr.bin/rdist/os-openbsd.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/usr.bin/rdist/os-openbsd.h b/usr.bin/rdist/os-openbsd.h index 35fe6ddd7b0..0989b1dfdd5 100644 --- a/usr.bin/rdist/os-openbsd.h +++ b/usr.bin/rdist/os-openbsd.h @@ -1,4 +1,4 @@ -/* * $OpenBSD: os-openbsd.h,v 1.7 1997/07/22 04:34:28 millert Exp $*/ +/* * $OpenBSD: os-openbsd.h,v 1.8 1997/07/22 04:42:06 millert Exp $*/ /* * Copyright (c) 1993 Michael A. Cooper * Copyright (c) 1993 Regents of the University of California. @@ -154,9 +154,12 @@ typedef void POINTER; #define NEED_STRING_H /* Need <string.h> */ /* + * We have <paths.h> + */ +#define PATHS_H <paths.h> + +/* * Path to the remote shell command. - * Define this only if the pathname is different than - * that which appears in "include/paths.h". + * May be overridden via the environment variable RSH. */ -/* Set the environment variable RSH to override this */ -#define _PATH_RSH "/usr/bin/rsh" /**/ +#define _PATH_REMSH _PATH_RSH /**/ |