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>2014-02-10 02:40:16 +0000
commit52d571e95114cd6d63b5dc4829f87fd55213c828 (patch)
tree396998bb140230b94efac420be445e989d06fedb /scp.c
parentb63620615d5c8af09e350608233f69191ad6c275 (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 18d3b1dc9..0669d0215 100644
--- a/scp.c
+++ b/scp.c
@@ -189,8 +189,16 @@ do_local_cmd(arglist *a)
189 189
190 if (verbose_mode) { 190 if (verbose_mode) {
191 fprintf(stderr, "Executing:"); 191 fprintf(stderr, "Executing:");
192 for (i = 0; i < a->num; i++) 192 for (i = 0; i < a->num; i++) {
193 fprintf(stderr, " %s", a->list[i]); 193 if (i == 0)
194 fprintf(stderr, " %s", a->list[i]);
195 else
196 /*
197 * TODO: misbehaves if a->list[i] contains a
198 * single quote
199 */
200 fprintf(stderr, " '%s'", a->list[i]);
201 }
194 fprintf(stderr, "\n"); 202 fprintf(stderr, "\n");
195 } 203 }
196 if ((pid = fork()) == -1) 204 if ((pid = fork()) == -1)