summaryrefslogtreecommitdiff
path: root/sftp.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2010-01-28 06:27:54 +1100
committerDamien Miller <djm@mindrot.org>2010-01-28 06:27:54 +1100
commita1162985a51321158a625a214424a7ec51030a7d (patch)
treee3e3815d97e804380ffbbbf28a6c5d830426ac43 /sftp.c
parenta21cdfac2fd89360b5c60152bda60b4150ad35fc (diff)
- djm@cvs.openbsd.org 2010/01/27 19:21:39
[sftp.c] add missing "p" flag to getopt optstring; bz#1704 from imorgan AT nas.nasa.gov
Diffstat (limited to 'sftp.c')
-rw-r--r--sftp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sftp.c b/sftp.c
index e01703ba9..d65d4ec62 100644
--- a/sftp.c
+++ b/sftp.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: sftp.c,v 1.122 2010/01/15 00:05:22 guenther Exp $ */ 1/* $OpenBSD: sftp.c,v 1.123 2010/01/27 19:21:39 djm Exp $ */
2/* 2/*
3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> 3 * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
4 * 4 *
@@ -2095,7 +2095,7 @@ main(int argc, char **argv)
2095 infile = stdin; 2095 infile = stdin;
2096 2096
2097 while ((ch = getopt(argc, argv, 2097 while ((ch = getopt(argc, argv,
2098 "1246hqrvCc:D:i:o:s:S:b:B:F:P:R:")) != -1) { 2098 "1246hpqrvCc:D:i:o:s:S:b:B:F:P:R:")) != -1) {
2099 switch (ch) { 2099 switch (ch) {
2100 /* Passed through to ssh(1) */ 2100 /* Passed through to ssh(1) */
2101 case '4': 2101 case '4':