diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-21 19:04:34 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-21 20:49:17 +0100 |
commit | 1e22899d268ae5a089f941a204413c07ee64fc78 (patch) | |
tree | 852ba86533a077871c3f9cfa63f811c6a43fad7b /source3/include | |
parent | e23d8a3d1f558a7e98ef2afd71e1d15c5b3a71bc (diff) | |
download | samba-1e22899d268ae5a089f941a204413c07ee64fc78.tar.gz samba-1e22899d268ae5a089f941a204413c07ee64fc78.tar.bz2 samba-1e22899d268ae5a089f941a204413c07ee64fc78.zip |
s3: Make the implicit reference to Protocol in mask_match_list() explicit
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 3399965043..fa0a69ea58 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1191,7 +1191,8 @@ bool ms_has_wild_w(const smb_ucs2_t *s); bool mask_match(const char *string, const char *pattern, enum protocol_types proto, bool is_case_sensitive); bool mask_match_search(const char *string, const char *pattern, bool is_case_sensitive); -bool mask_match_list(const char *string, char **list, int listLen, bool is_case_sensitive); +bool mask_match_list(const char *string, char **list, int listLen, + enum protocol_types proto, bool is_case_sensitive); bool unix_wild_match(const char *pattern, const char *string); bool name_to_fqdn(fstring fqdn, const char *name); void *talloc_append_blob(TALLOC_CTX *mem_ctx, void *buf, DATA_BLOB blob); |