summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-09-28 19:42:05 +0000
committerderaadt <deraadt@openbsd.org>1999-09-28 19:42:05 +0000
commit09f2df7310a0f6a0042e1aae7a3753b785b1dc7d (patch)
treed99b3bc7d7f94a584fee08d49d30c41ebf9ad6af
parentcorrect defaults (diff)
downloadwireguard-openbsd-09f2df7310a0f6a0042e1aae7a3753b785b1dc7d.tar.xz
wireguard-openbsd-09f2df7310a0f6a0042e1aae7a3753b785b1dc7d.zip
put q in getopt
-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)
{