summaryrefslogtreecommitdiffstats
path: root/chrome_frame/utils.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome_frame/utils.cc')
-rw-r--r--chrome_frame/utils.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome_frame/utils.cc b/chrome_frame/utils.cc
index 887d13d..8526b9a 100644
--- a/chrome_frame/utils.cc
+++ b/chrome_frame/utils.cc
@@ -719,7 +719,7 @@ bool IsOptInUrl(const wchar_t* url) {
bool match_found = false;
RegistryValueIterator url_list(config_key.Handle(), url_list_name);
while (!match_found && url_list.Valid()) {
- if (MatchPatternWide(url, url_list.Name())) {
+ if (MatchPattern(url, url_list.Name())) {
match_found = true;
} else {
++url_list;
@@ -1437,4 +1437,3 @@ void PinModule() {
}
}
}
-