aboutsummaryrefslogtreecommitdiff
path: root/vcs-svn/string_pool.h
diff options
context:
space:
mode:
authorDavid Barr <david.barr@cordelta.com>2010-12-12 03:59:31 +1100
committerJonathan Nieder <jrnieder@gmail.com>2011-03-07 01:43:58 -0600
commite43581120843f6f55f411af470faf806e052ad9d (patch)
tree653228b3955cc33b3c3ed44388a5fd58899af11d /vcs-svn/string_pool.h
parent723b7a2789d66c1365390cc9b9213e34ab8513d7 (diff)
downloadgit-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/string_pool.h')
-rw-r--r--vcs-svn/string_pool.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcs-svn/string_pool.h b/vcs-svn/string_pool.h
index 3720cf816..96e501dc5 100644
--- a/vcs-svn/string_pool.h
+++ b/vcs-svn/string_pool.h
@@ -5,6 +5,7 @@ uint32_t pool_intern(const char *key);
const char *pool_fetch(uint32_t entry);
uint32_t pool_tok_r(char *str, const char *delim, char **saveptr);
void pool_print_seq(uint32_t len, const uint32_t *seq, char delim, FILE *stream);
+void pool_print_seq_q(uint32_t len, const uint32_t *seq, char delim, FILE *stream);
uint32_t pool_tok_seq(uint32_t sz, uint32_t *seq, const char *delim, char *str);
void pool_reset(void);