diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-01-27 19:21:40 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-01-27 19:21:40 +0000 |
commit | 1ab48add32748e3b8da815cad2aafa77310873e9 (patch) | |
tree | 67ff0841207f4a15527d3dc6edc8e2bbc2617492 /usr.bin/ssh/sftp.c | |
parent | e88a21bdd82a6e897ffadc096e3bde2081264775 (diff) |
add missing "p" flag to getopt optstring;
bz#1704 from imorgan AT nas.nasa.gov
Diffstat (limited to 'usr.bin/ssh/sftp.c')
-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': |