diff options
author | Nicolas Valcárcel <nvalcarcel@ubuntu.com> | 2014-02-09 16:09:59 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2015-09-17 13:52:40 +0100 |
commit | 286127a1eb1be61084bc7907f8862470a140739b (patch) | |
tree | cdafdcf7e80435ed34bab4f869c3f605b9624ca7 /scp.c | |
parent | 8c6ce36545711e987fcab76a11f2110fdf9a7c8a (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.c | 12 |
1 files changed, 10 insertions, 2 deletions
@@ -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) |