diff options
Diffstat (limited to 'ssh-keygen.c')
-rw-r--r-- | ssh-keygen.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ssh-keygen.c b/ssh-keygen.c index 0bd5fc93..3ba50d85 100644 --- a/ssh-keygen.c +++ b/ssh-keygen.c @@ -2466,6 +2466,12 @@ main(int argc, char **argv) sizeof(out_file)) fatal("Output filename too long"); break; + case 'J': + lines_to_process = strtoul(optarg, NULL, 10); + break; + case 'j': + start_lineno = strtoul(optarg, NULL, 10); + break; case 'T': do_screen_candidates = 1; if (strlcpy(out_file, optarg, sizeof(out_file)) >= |