summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-11-21 19:04:34 +0100
committerVolker Lendecke <vl@samba.org>2009-11-21 20:49:16 +0100
commite23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc (patch)
treea6e586add1d5f07016999d0138042db1cbd751b2 /source3/lib
parentb2db4c51625077569ccc0fdf39471a67c3646066 (diff)
downloadsamba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.tar.gz
samba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.tar.bz2
samba-e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc.zip
s3: Make the implicit reference to Protocol in mask_match() explicit
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index e0b09c4f1f..e3ceea4951 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -1687,7 +1687,8 @@ bool is_in_path(const char *name, name_compare_entry *namelist, bool case_sensit
for(; namelist->name != NULL; namelist++) {
if(namelist->is_wild) {
- if (mask_match(last_component, namelist->name, case_sensitive)) {
+ if (mask_match(last_component, namelist->name,
+ get_Protocol(), case_sensitive)) {
DEBUG(8,("is_in_path: mask match succeeded\n"));
return True;
}
@@ -2384,14 +2385,16 @@ bool ms_has_wild_w(const smb_ucs2_t *s)
of the ".." name.
*******************************************************************/
-bool mask_match(const char *string, const char *pattern, bool is_case_sensitive)
+bool mask_match(const char *string, const char *pattern,
+ enum protocol_types proto, bool is_case_sensitive)
{
if (ISDOTDOT(string))
string = ".";
if (ISDOT(pattern))
return False;
- return ms_fnmatch(pattern, string, Protocol <= PROTOCOL_LANMAN2, is_case_sensitive) == 0;
+ return ms_fnmatch(pattern, string, proto <= PROTOCOL_LANMAN2,
+ is_case_sensitive) == 0;
}
/*******************************************************************
@@ -2418,7 +2421,8 @@ bool mask_match_search(const char *string, const char *pattern, bool is_case_sen
bool mask_match_list(const char *string, char **list, int listLen, bool is_case_sensitive)
{
while (listLen-- > 0) {
- if (mask_match(string, *list++, is_case_sensitive))
+ if (mask_match(string, *list++, get_Protocol(),
+ is_case_sensitive))
return True;
}
return False;