diff options
author | 2010-01-27 19:21:39 +0000 | |
---|---|---|
committer | 2010-01-27 19:21:39 +0000 | |
commit | a63182e8d257b7b96e83c56fa89a58dd564b86c7 (patch) | |
tree | 0c16965d696a5af580d8f7156bcb500de00be5e1 | |
parent | change the MRR pattern from 1/1/1/1 to 2/2/2/4 (diff) | |
download | wireguard-openbsd-a63182e8d257b7b96e83c56fa89a58dd564b86c7.tar.xz wireguard-openbsd-a63182e8d257b7b96e83c56fa89a58dd564b86c7.zip |
add missing "p" flag to getopt optstring;
bz#1704 from imorgan AT nas.nasa.gov
-rw-r--r-- | usr.bin/ssh/sftp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp.c b/usr.bin/ssh/sftp.c index 3309a816dd3..780937e9f42 100644 --- a/usr.bin/ssh/sftp.c +++ b/usr.bin/ssh/sftp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp.c,v 1.122 2010/01/15 00:05:22 guenther Exp $ */ +/* $OpenBSD: sftp.c,v 1.123 2010/01/27 19:21:39 djm Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -2046,7 +2046,7 @@ main(int argc, char **argv) infile = stdin; while ((ch = getopt(argc, argv, - "1246hqrvCc:D:i:o:s:S:b:B:F:P:R:")) != -1) { + "1246hpqrvCc:D:i:o:s:S:b:B:F:P:R:")) != -1) { switch (ch) { /* Passed through to ssh(1) */ case '4': |