vcs-svn: avoid using ls command twice
commit359ed94634c2dc8efa6e40ed51e9d0767383971b
authorDavid Barr <david.barr@cordelta.com>
Mon, 13 Dec 2010 06:09:31 +0000 (13 17:09 +1100)
committerJonathan Nieder <jrnieder@gmail.com>
Sat, 26 Mar 2011 06:00:05 +0000 (26 01:00 -0500)
treea0f026fedc3c4e333beb0a65267964c702e243f1
parent0d2b8418bc8685aad48fad2f9649ac47804b2888
vcs-svn: avoid using ls command twice

Currently there are two functions to retrieve the mode and content
at a path:

const char *repo_read_path(const uint32_t *path);
uint32_t repo_read_mode(const uint32_t *path)

Replace them with a single function with two return values.  This
means we can use one round-trip to get the same information from
fast-import that previously took two.

Signed-off-by: David Barr <david.barr@cordelta.com>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
repo_tree.c
repo_tree.h
svndump.c