diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2003-05-16 03:27:13 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2003-05-16 03:27:13 +0000 |
commit | ea5e1e7b5a616ddf2e7aa04bec77b9a1142f72a4 (patch) | |
tree | 9be91c00de78445cbd34fe6a0012f8ce3dc28920 /usr.bin/ssh/ssh-keysign.c | |
parent | 196cb361691e6b713df554208e03d0c32bcd4634 (diff) |
add AddressFamily option to ssh_config (like -4, -6 on commandline).
Portable bug #534; ok markus@
Diffstat (limited to 'usr.bin/ssh/ssh-keysign.c')
-rw-r--r-- | usr.bin/ssh/ssh-keysign.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keysign.c b/usr.bin/ssh/ssh-keysign.c index 33977af665d..f50c3fb6bc4 100644 --- a/usr.bin/ssh/ssh-keysign.c +++ b/usr.bin/ssh/ssh-keysign.c @@ -22,7 +22,7 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "includes.h" -RCSID("$OpenBSD: ssh-keysign.c,v 1.11 2003/04/02 14:36:26 markus Exp $"); +RCSID("$OpenBSD: ssh-keysign.c,v 1.12 2003/05/16 03:27:12 djm Exp $"); #include <openssl/evp.h> #include <openssl/rand.h> @@ -42,7 +42,9 @@ RCSID("$OpenBSD: ssh-keysign.c,v 1.11 2003/04/02 14:36:26 markus Exp $"); #include "pathnames.h" #include "readconf.h" -uid_t original_real_uid; /* XXX readconf.c needs this */ +/* XXX readconf.c needs these */ +uid_t original_real_uid; +int IPv4or6; static int valid_request(struct passwd *pw, char *host, Key **ret, u_char *data, |