summaryrefslogtreecommitdiffstats
path: root/ssh-keygen.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2016-09-12 13:52:17 +1000
committerDarren Tucker <dtucker@zip.com.au>2016-09-12 13:52:17 +1000
commitaf48d541360b1d7737b35740a4b1ca34e1652cd9 (patch)
treefd2e9ab2505c107bdc0e0ffb25db5699165e9081 /ssh-keygen.c
parentd8c3cfbb018825c6c86547165ddaf11924901c49 (diff)
Move ssh-keygen -T handling code to match upstream.
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r--ssh-keygen.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c
index 09d995ff..07f78eef 100644
--- a/ssh-keygen.c
+++ b/ssh-keygen.c
@@ -2467,12 +2467,6 @@ main(int argc, char **argv)
case 'j':
start_lineno = strtoul(optarg, NULL, 10);
break;
- case 'T':
- do_screen_candidates = 1;
- if (strlcpy(out_file, optarg, sizeof(out_file)) >=
- sizeof(out_file))
- fatal("Output filename too long");
- break;
case 'K':
if (strlen(optarg) >= PATH_MAX)
fatal("Checkpoint filename too long");
@@ -2489,6 +2483,12 @@ main(int argc, char **argv)
if (BN_hex2bn(&start, optarg) == 0)
fatal("Invalid start point.");
break;
+ case 'T':
+ do_screen_candidates = 1;
+ if (strlcpy(out_file, optarg, sizeof(out_file)) >=
+ sizeof(out_file))
+ fatal("Output filename too long");
+ break;
#endif /* WITH_OPENSSL */
case '?':
default: