diff options
author | Damien Miller <djm@mindrot.org> | 2001-10-10 15:07:44 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-10-10 15:07:44 +1000 |
commit | 139d4cd9087bb3eaf751406016bc2223d7d0d7b1 (patch) | |
tree | 618f354b6eaa84a7a39d4a407f129adfb1711e7a /ssh-keyscan.c | |
parent | 7ea6f204b67039e09c79dfb3049a88806e5d1ea3 (diff) |
- markus@cvs.openbsd.org 2001/10/09 10:12:08
[session.c]
chdir $HOME after krb_afslog(); from bbense@networking.stanford.edu
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r-- | ssh-keyscan.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index 1849c33b4..c46ce633f 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c | |||
@@ -7,7 +7,7 @@ | |||
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "includes.h" | 9 | #include "includes.h" |
10 | RCSID("$OpenBSD: ssh-keyscan.c,v 1.29 2001/08/30 22:22:32 markus Exp $"); | 10 | RCSID("$OpenBSD: ssh-keyscan.c,v 1.30 2001/10/08 19:05:05 markus Exp $"); |
11 | 11 | ||
12 | #if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H) | 12 | #if defined(HAVE_SYS_QUEUE_H) && !defined(HAVE_BOGUS_SYS_QUEUE_H) |
13 | #include <sys/queue.h> | 13 | #include <sys/queue.h> |
@@ -36,11 +36,7 @@ RCSID("$OpenBSD: ssh-keyscan.c,v 1.29 2001/08/30 22:22:32 markus Exp $"); | |||
36 | 36 | ||
37 | /* Flag indicating whether IPv4 or IPv6. This can be set on the command line. | 37 | /* Flag indicating whether IPv4 or IPv6. This can be set on the command line. |
38 | Default value is AF_UNSPEC means both IPv4 and IPv6. */ | 38 | Default value is AF_UNSPEC means both IPv4 and IPv6. */ |
39 | #ifdef IPV4_DEFAULT | ||
40 | int IPv4or6 = AF_INET; | ||
41 | #else | ||
42 | int IPv4or6 = AF_UNSPEC; | 39 | int IPv4or6 = AF_UNSPEC; |
43 | #endif | ||
44 | 40 | ||
45 | int ssh_port = SSH_DEFAULT_PORT; | 41 | int ssh_port = SSH_DEFAULT_PORT; |
46 | 42 | ||