diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2012-10-02 07:07:46 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2012-10-02 07:07:46 +0000 |
commit | 2f6613eeb769d3ec10605d128a92f5f7e6bcae70 (patch) | |
tree | bbe93f532e262fda01be9ed714574c45e2512ddd /usr.bin/ssh | |
parent | 2f38bb252d46bc4c4bd69c69e6b7b0e63c0dce80 (diff) |
fix -z option, broken in revision 1.215
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/ssh-keygen.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c index fa50e83770a..da0f594b646 100644 --- a/usr.bin/ssh/ssh-keygen.c +++ b/usr.bin/ssh/ssh-keygen.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.217 2012/08/17 01:25:58 djm Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.218 2012/10/02 07:07:45 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1956,7 +1956,7 @@ main(int argc, char **argv) } while ((opt = getopt(argc, argv, "AegiqpclBHLhvxXyF:b:f:t:D:I:J:j:K:P:" - "m:N:n:O:C:r:g:R:T:G:M:S:s:a:V:W:z")) != -1) { + "m:N:n:O:C:r:g:R:T:G:M:S:s:a:V:W:z:")) != -1) { switch (opt) { case 'A': gen_all_hostkeys = 1; |