diff options
author | Torgny Nyblom <kde@nyblom.org> | 2010-11-14 10:34:30 +0100 |
---|---|---|
committer | Torgny Nyblom <kde@nyblom.org> | 2010-11-14 10:34:30 +0100 |
commit | 90805b608e32984d1b0df7c5b8e0ca2edc65bc95 (patch) | |
tree | 8cf9a8cf7b9bb702a103e3e165ac3322dbb21f53 | |
parent | 8867e81e98ada1898436bedfdcf31036d638ed6c (diff) | |
parent | 10a2539d4c3151d57db3c1492ab4fce66447ea60 (diff) | |
download | svn2git-90805b608e32984d1b0df7c5b8e0ca2edc65bc95.tar svn2git-90805b608e32984d1b0df7c5b8e0ca2edc65bc95.tar.gz svn2git-90805b608e32984d1b0df7c5b8e0ca2edc65bc95.tar.bz2 svn2git-90805b608e32984d1b0df7c5b8e0ca2edc65bc95.tar.xz svn2git-90805b608e32984d1b0df7c5b8e0ca2edc65bc95.zip |
Merge branch 'master' of gitorious.org:svn2git/svn2git
-rw-r--r-- | src/svn.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/svn.cpp b/src/svn.cpp index 702fedf..5026f45 100644 --- a/src/svn.cpp +++ b/src/svn.cpp @@ -656,10 +656,7 @@ int SvnRevision::exportInternal(const char *key, const svn_fs_path_change_t *cha if (path_from != NULL) { previous = QString::fromUtf8(path_from); - AprAutoPool revpool(pool.data()); - svn_boolean_t is_dir; - SVN_ERR(svn_fs_is_dir(&is_dir, fs_root, path_from, revpool)); - if (is_dir) { + if (wasDir(fs, rev_from, path_from, pool.data())) { previous += '/'; } MatchRuleList::ConstIterator prevmatch = |