summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/ssh-keygen.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-28 19:42:06 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1999-09-28 19:42:06 +0000
commit076d766d472b89c7636ef3770064fc34b4e68897 (patch)
treee77461939225ba5c09d24c17c1a638527823e282 /usr.bin/ssh/ssh-keygen.c
parenta6dbfe68cd3ce5a8976ad41aac33ef6383d9fc2d (diff)
put q in getopt
Diffstat (limited to 'usr.bin/ssh/ssh-keygen.c')
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index 2d66f2310dc..cd38b8e2a22 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/ssh-keygen.c
@@ -14,7 +14,7 @@ Identity and host key generation and maintenance.
*/
#include "includes.h"
-RCSID("$Id: ssh-keygen.c,v 1.2 1999/09/28 04:45:37 provos Exp $");
+RCSID("$Id: ssh-keygen.c,v 1.3 1999/09/28 19:42:05 deraadt Exp $");
#ifndef HAVE_GETHOSTNAME
#include <sys/utsname.h>
@@ -337,7 +337,7 @@ main(int ac, char **av)
error("Could not create directory '%s'.", buf);
/* Parse command line arguments. */
- while ((opt = getopt(ac, av, "pcb:f:P:N:C:")) != EOF)
+ while ((opt = getopt(ac, av, "qpcb:f:P:N:C:")) != EOF)
{
switch (opt)
{