diff options
author | David Barr <david.barr@cordelta.com> | 2010-12-12 03:59:31 +1100 |
---|---|---|
committer | Jonathan Nieder <jrnieder@gmail.com> | 2011-03-07 01:43:58 -0600 |
commit | e43581120843f6f55f411af470faf806e052ad9d (patch) | |
tree | 653228b3955cc33b3c3ed44388a5fd58899af11d /vcs-svn/fast_export.c | |
parent | 723b7a2789d66c1365390cc9b9213e34ab8513d7 (diff) | |
download | git-e43581120843f6f55f411af470faf806e052ad9d.tar.gz git-e43581120843f6f55f411af470faf806e052ad9d.tar.xz |
vcs-svn: quote paths correctly for ls command
This bug was found while importing rev 601865 of ASF.
[jn: with test]
Signed-off-by: David Barr <david.barr@cordelta.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Diffstat (limited to 'vcs-svn/fast_export.c')
-rw-r--r-- | vcs-svn/fast_export.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcs-svn/fast_export.c b/vcs-svn/fast_export.c index a8ce5c64b..4d57efabd 100644 --- a/vcs-svn/fast_export.c +++ b/vcs-svn/fast_export.c @@ -107,7 +107,7 @@ static void ls_from_active_commit(uint32_t depth, const uint32_t *path) { /* ls "path/to/file" */ printf("ls \""); - pool_print_seq(depth, path, '/', stdout); + pool_print_seq_q(depth, path, '/', stdout); printf("\"\n"); fflush(stdout); } |