diff options
author | 1999-12-02 20:05:40 +0000 | |
---|---|---|
committer | 1999-12-02 20:05:40 +0000 | |
commit | 2745bd98d4e2c449c8bacc7c8bfcbc8bf7e829e6 (patch) | |
tree | f521e05e895fb49f14c125d7fd648cd12c909a74 /usr.bin/ssh/ssh.h | |
parent | Opps. Back out a part of last commit that wasn't intended for commit yet. (diff) | |
download | wireguard-openbsd-2745bd98d4e2c449c8bacc7c8bfcbc8bf7e829e6.tar.xz wireguard-openbsd-2745bd98d4e2c449c8bacc7c8bfcbc8bf7e829e6.zip |
document $SSH_ASKPASS, reasonable default
Diffstat (limited to 'usr.bin/ssh/ssh.h')
-rw-r--r-- | usr.bin/ssh/ssh.h | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh.h b/usr.bin/ssh/ssh.h index 59e4af49adb..ba7de195013 100644 --- a/usr.bin/ssh/ssh.h +++ b/usr.bin/ssh/ssh.h @@ -13,7 +13,7 @@ * */ -/* RCSID("$Id: ssh.h,v 1.28 1999/12/01 16:54:35 markus Exp $"); */ +/* RCSID("$Id: ssh.h,v 1.29 1999/12/02 20:05:40 markus Exp $"); */ #ifndef SSH_H #define SSH_H @@ -151,6 +151,13 @@ #define SSH_AGENTPID_ENV_NAME "SSH_AGENT_PID" /* + * Default path to ssh-askpass used by ssh-add, + * environment variable for overwriting the default location + */ +#define SSH_ASKPASS_DEFAULT "/usr/X11R6/bin/ssh-askpass" +#define SSH_ASKPASS_ENV "SSH_ASKPASS" + +/* * Force host key length and server key length to differ by at least this * many bits. This is to make double encryption with rsaref work. */ |