diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-22 04:42:07 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-07-22 04:42:07 +0000 |
commit | 600f2bdff785969826550c4b491910a746b0d27b (patch) | |
tree | 960bd4e2109de47e06b85346ad582d4eee4bf78b | |
parent | 204267d1a9ea9b409b47c02971bb6aabfeae11be (diff) |
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 /**/ |