[SCM] Samba Shared Repository - branch master updated

Michael Adam obnox at samba.org
Mon May 7 08:12:04 MDT 2012


The branch, master has been updated
       via  4754743 s3:registry: let reg_values_need_update() return true if the backend does not implement the method
       via  fb58951 s3:registry: let reg_subkeys_need_update() return true if the backend does not implement the method
      from  246409e s4-dns: Build BIND DLZ modules with correct private library

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 4754743860b4601465aa122021a8ae7ddb42f6a1
Author: Michael Adam <obnox at samba.org>
Date:   Mon May 7 14:09:28 2012 +0200

    s3:registry: let reg_values_need_update() return true if the backend does not implement the method
    
    Otherwise the value cache might become outdated.
    
    Autobuild-User: Michael Adam <obnox at samba.org>
    Autobuild-Date: Mon May  7 16:11:05 CEST 2012 on sn-devel-104

commit fb58951f93909e95504eebc06119b96d864c8425
Author: Michael Adam <obnox at samba.org>
Date:   Mon May 7 14:08:13 2012 +0200

    s3:registry: let reg_subkeys_need_update() return true if the backend does not implement the method
    
    Otherwise the subkey cache might become outdated.

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

Summary of changes:
 source3/registry/reg_dispatcher.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source3/registry/reg_dispatcher.c b/source3/registry/reg_dispatcher.c
index 765954e..e9ed14b 100644
--- a/source3/registry/reg_dispatcher.c
+++ b/source3/registry/reg_dispatcher.c
@@ -244,7 +244,7 @@ bool reg_subkeys_need_update(struct registry_key_handle *key,
 		return key->ops->subkeys_need_update(subkeys);
 	}
 
-	return false;
+	return true;
 }
 
 /**
@@ -259,6 +259,6 @@ bool reg_values_need_update(struct registry_key_handle *key,
 		return key->ops->values_need_update(values);
 	}
 
-	return false;
+	return true;
 }
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list