diff options
-rw-r--r-- | src/svn.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/svn.cpp b/src/svn.cpp index 5c79920..3435683 100644 --- a/src/svn.cpp +++ b/src/svn.cpp @@ -219,7 +219,7 @@ static void splitPathName(const Rules::Match &rule, const QString &pathName, QSt QString path = pathName.mid(svnprefix.length()); if( !path.isEmpty() && !rule.prefix.isEmpty() ) path.prepend('/'); - *path_p = rule.prefix + pathName.mid(svnprefix.length()); + *path_p = rule.prefix + path; } } |