summaryrefslogtreecommitdiff
path: root/scp.c
diff options
context:
space:
mode:
authorNicolas Valcárcel <nvalcarcel@ubuntu.com>2014-02-09 16:09:59 +0000
committerColin Watson <cjwatson@debian.org>2015-11-29 17:36:19 +0000
commita4fade6aaf7df4c6a01fc353a5cd689e0073e367 (patch)
tree02c49a21ff696fb860df3713c459c6f105dd52a6 /scp.c
parent68538f6919550b36ae9d812a1c2c52dbe9354608 (diff)
Adjust scp quoting in verbose mode
Tweak scp's reporting of filenames in verbose mode to be a bit less confusing with spaces. This should be revised to mimic real shell quoting. Bug-Ubuntu: https://bugs.launchpad.net/bugs/89945 Last-Update: 2010-02-27 Patch-Name: scp-quoting.patch
Diffstat (limited to 'scp.c')
-rw-r--r--scp.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/scp.c b/scp.c
index 593fe89bd..e39294e9c 100644
--- a/scp.c
+++ b/scp.c
@@ -190,8 +190,16 @@ do_local_cmd(arglist *a)
190 190
191 if (verbose_mode) { 191 if (verbose_mode) {
192 fprintf(stderr, "Executing:"); 192 fprintf(stderr, "Executing:");
193 for (i = 0; i < a->num; i++) 193 for (i = 0; i < a->num; i++) {
194 fprintf(stderr, " %s", a->list[i]); 194 if (i == 0)
195 fprintf(stderr, " %s", a->list[i]);
196 else
197 /*
198 * TODO: misbehaves if a->list[i] contains a
199 * single quote
200 */
201 fprintf(stderr, " '%s'", a->list[i]);
202 }
195 fprintf(stderr, "\n"); 203 fprintf(stderr, "\n");
196 } 204 }
197 if ((pid = fork()) == -1) 205 if ((pid = fork()) == -1)