diff options
author | bubulle <bubulle@alioth.debian.org> | 2008-11-01 11:09:46 +0000 |
---|---|---|
committer | bubulle <bubulle@alioth.debian.org> | 2008-11-01 11:09:46 +0000 |
commit | a2b71a0141763c20552bb45eeb4cb78c4b513118 (patch) | |
tree | 85b64d98387145ea4e00c1b529e1820542a979a3 /source/lib/access.c | |
parent | 2203bd59918d6d70515f9dad601cb5c0ef098092 (diff) | |
download | samba-a2b71a0141763c20552bb45eeb4cb78c4b513118.tar.gz |
Revert the merge of 3.3.0~pre2 in upstream branch
git-svn-id: svn://svn.debian.org/svn/pkg-samba/branches/samba/upstream@2200 fc4039ab-9d04-0410-8cac-899223bdd6b0
Diffstat (limited to 'source/lib/access.c')
-rw-r--r-- | source/lib/access.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/access.c b/source/lib/access.c index 6a445f8139..db5d007deb 100644 --- a/source/lib/access.c +++ b/source/lib/access.c @@ -175,7 +175,7 @@ static bool string_match(const char *tok,const char *s) } /* client_match - match host name and address against token */ -bool client_match(const char *tok, const void *item) +static bool client_match(const char *tok, const void *item) { const char **client = (const char **)item; @@ -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 */ -bool list_match(const char **list,const void *item, +static bool list_match(const char **list,const void *item, bool (*match_fn)(const char *, const void *)) { bool match = false; |