diff options
author | 2010-07-19 03:16:33 +0000 | |
---|---|---|
committer | 2010-07-19 03:16:33 +0000 | |
commit | e86c64c7b44da23fa840319957813b5342dfdc9d (patch) | |
tree | d7547b8ac783d912af53082832daf999a2bffe8f | |
parent | Update to upstream from ncurses-5.7-20100717. Fixes rs1 in wsvt25 and a (diff) | |
download | wireguard-openbsd-e86c64c7b44da23fa840319957813b5342dfdc9d.tar.xz wireguard-openbsd-e86c64c7b44da23fa840319957813b5342dfdc9d.zip |
bz#1797: fix swapped args in upload_dir_internal(), breaking recursive
upload depth checks and causing verbose printing of transfers to always
be turned on; patch from imorgan AT nas.nasa.gov
-rw-r--r-- | usr.bin/ssh/sftp-client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp-client.c b/usr.bin/ssh/sftp-client.c index a222586b20a..06e44315c4e 100644 --- a/usr.bin/ssh/sftp-client.c +++ b/usr.bin/ssh/sftp-client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sftp-client.c,v 1.91 2010/06/18 04:43:08 djm Exp $ */ +/* $OpenBSD: sftp-client.c,v 1.92 2010/07/19 03:16:33 djm Exp $ */ /* * Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org> * @@ -1510,7 +1510,7 @@ upload_dir_internal(struct sftp_conn *conn, char *src, char *dst, continue; if (upload_dir_internal(conn, new_src, new_dst, - pflag, depth + 1, printflag) == -1) + pflag, printflag, depth + 1) == -1) ret = -1; } else if (S_ISREG(sb.st_mode)) { if (do_upload(conn, new_src, new_dst, pflag) == -1) { |