The branch, v3-2-test has been updated
       via  a13e8bd39de978d69666b8aeb884d943885a3605 (commit)
      from  ec891be53cc4042baf418c1f7b037a11e5055273 (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit a13e8bd39de978d69666b8aeb884d943885a3605
Author: Jeremy Allison <[EMAIL PROTECTED]>
Date:   Thu Oct 25 17:17:46 2007 -0700

    Fix reversed bool check for access. Found by kukks.
    Thanks !
    Jeremy.

-----------------------------------------------------------------------

Summary of changes:
 source/lib/access.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/lib/access.c b/source/lib/access.c
index 0d47711..7b78017 100644
--- a/source/lib/access.c
+++ b/source/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 {


-- 
Samba Shared Repository

Reply via email to