summaryrefslogtreecommitdiffstats
path: root/source3/lib/access.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2007-10-25 17:17:46 -0700
committerJeremy Allison <jra@samba.org>2007-10-25 17:17:46 -0700
commit34a8e1c51ebc2a26e9721d6f8a25d6de1057c903 (patch)
tree08757b70f1e57ea7f7598ec2293b2d1a45fd23d5 /source3/lib/access.c
parente6fcfdb54eb75d69370d1af276e478b15a15d855 (diff)
downloadsamba-34a8e1c51ebc2a26e9721d6f8a25d6de1057c903.tar.gz
samba-34a8e1c51ebc2a26e9721d6f8a25d6de1057c903.tar.xz
samba-34a8e1c51ebc2a26e9721d6f8a25d6de1057c903.zip
Fix reversed bool check for access. Found by kukks.
Thanks ! Jeremy. (This used to be commit a13e8bd39de978d69666b8aeb884d943885a3605)
Diffstat (limited to 'source3/lib/access.c')
-rw-r--r--source3/lib/access.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/access.c b/source3/lib/access.c
index 0d477116ed4..7b78017a64f 100644
--- a/source3/lib/access.c
+++ b/source3/lib/access.c
@@ -52,7 +52,7 @@ static bool masked_match(const char *tok, const char *slash, const char *s)
SAFE_FREE(tok_copy);
if (strlen(slash + 1) > 2) {
- if (interpret_string_addr(&ss_mask, slash+1, 0)) {
+ if (!interpret_string_addr(&ss_mask, slash+1, 0)) {
return false;
}
} else {