Displaying 2 results from an estimated 2 matches for "double_break".
2001 Jul 27
0
Updated ssh-keyscan patch for ssh2 support
...else if (++argno >= argc) {
error("missing filename for `-f'");
return (NULL);
} else
- fname = argv[argno++];
+ fname = argv[argno];
if (!strcmp(fname, "-"))
fname = NULL;
lb = Linebuf_alloc(fname, error);
- } else
+ goto double_break;
+ case 't':
+ get_keytypes = 0;
+ tname = &argv[argno][1];
+ if (!*tname) {
+ if (++argno >= argc) {
+ error("missing types for `-t'");
+ return (NULL);
+ }
+ tname = argv[argno];
+ }
+ tname = strtok(tname, ",");
+ w...
2001 May 14
2
openssh-2.9p1
Hi,
1. I think you should apply the attached patch to openssh-2.9p1,
otherwise ssh-keyscan on linux boxes with glibc-2.1 will experience enormous
timeout delays.
2. Is there a program like ssh-keyscan for the Version2 (dsa and rsa) keys??
regards
Peter Breitenlohner <peb at mppmu.mpg.de>
-------------- next part --------------
diff -ur openssh-2.9p1.orig/ssh-keyscan.c