summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--source3/include/proto.h2
-rw-r--r--source3/lib/access.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h
index 0cafdf630f..a19d51fe0f 100644
--- a/source3/include/proto.h
+++ b/source3/include/proto.h
@@ -294,6 +294,8 @@ char *lang_tdb_current(void);
/* The following definitions come from lib/access.c */
bool client_match(const char *tok, const void *item);
+bool list_match(const char **list,const void *item,
+ bool (*match_fn)(const char *, const void *));
bool allow_access(const char **deny_list,
const char **allow_list,
const char *cname,
diff --git a/source3/lib/access.c b/source3/lib/access.c
index 773823a609..6a445f8139 100644
--- a/source3/lib/access.c
+++ b/source3/lib/access.c
@@ -211,7 +211,7 @@ bool client_match(const char *tok, const void *item)
}
/* list_match - match an item against a list of tokens with exceptions */
-static bool list_match(const char **list,const void *item,
+bool list_match(const char **list,const void *item,
bool (*match_fn)(const char *, const void *))
{
bool match = false;