diff options
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada. | |||
18 | */ | 18 | */ |
19 | 19 | ||
20 | #include "includes.h" | 20 | #include "includes.h" |
21 | RCSID("$Id: ssh.c,v 1.1 1999/10/27 03:42:45 damien Exp $"); | 21 | RCSID("$Id: ssh.c,v 1.2 1999/10/28 03:25:17 damien Exp $"); |
22 | 22 | ||
23 | #include "xmalloc.h" | 23 | #include "xmalloc.h" |
24 | #include "ssh.h" | 24 | #include "ssh.h" |
@@ -215,6 +215,7 @@ main(int ac, char **av) | |||
215 | else | 215 | else |
216 | cp = av0; | 216 | cp = av0; |
217 | if (strcmp(cp, "rsh") != 0 && strcmp(cp, "ssh") != 0 && | 217 | if (strcmp(cp, "rsh") != 0 && strcmp(cp, "ssh") != 0 && |
218 | strcmp(cp, "openssh") != 0 && strcmp(cp, "openlogin") != 0 && | ||
218 | strcmp(cp, "rlogin") != 0 && strcmp(cp, "slogin") != 0) | 219 | strcmp(cp, "rlogin") != 0 && strcmp(cp, "slogin") != 0) |
219 | host = cp; | 220 | host = cp; |
220 | 221 | ||