From 1ba750063c5034c8cfa383dc9f33e25ace95ee63 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sat, 21 Nov 2009 20:26:55 +0000 Subject: Ooops... svn-id: r46048 --- common/archive.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'common') diff --git a/common/archive.cpp b/common/archive.cpp index 2e2aca6b22..f0790f1a27 100644 --- a/common/archive.cpp +++ b/common/archive.cpp @@ -54,7 +54,7 @@ int Archive::listMatchingMembers(ArchiveMemberList &list, const String &pattern) for ( ; it != allNames.end(); ++it) { // TODO: We match case-insenstivie for now, our API does not define whether that's ok or not though... // For our use case case-insensitive is probably what we want to have though. - if ((*it)->getName().matchString(lowercasePattern, true, true)) { + if ((*it)->getName().matchString(pattern, true, true)) { list.push_back(*it); matches++; } -- cgit v1.2.3