Skip to content

Commit b5c3d3a

Browse files
committed
Fix compilation, the last rebase/merge went wrong.
Noticed by: Andy Pilate
1 parent 4d4456f commit b5c3d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/svn.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -896,7 +896,7 @@ int SvnRevision::recurse(const char *path, const svn_fs_path_change_t *change,
896896
rev_from, changes, current, *match, matchRules, dirpool) == EXIT_FAILURE)
897897
return EXIT_FAILURE;
898898
} else {
899-
if (dirent->kind == svn_node_dir) {
899+
if (i.value() == svn_node_dir) {
900900
qDebug() << current << "rev" << revnum
901901
<< "did not match any rules; auto-recursing";
902902
if (recurse(entry, change, entryFrom.isNull() ? 0 : entryFrom.constData(),

0 commit comments

Comments
 (0)