s3:registry: let reg_values_need_update() return true if the backend does not impleme...
authorMichael Adam <obnox@samba.org>
Mon, 7 May 2012 12:09:28 +0000 (14:09 +0200)
committerMichael Adam <obnox@samba.org>
Mon, 7 May 2012 14:11:05 +0000 (16:11 +0200)
Otherwise the value cache might become outdated.

Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Mon May  7 16:11:05 CEST 2012 on sn-devel-104

source3/registry/reg_dispatcher.c

index 2b5e5a72a4ea69ec1a99185a8b94a9d62dd5c7e7..e9ed14bc7d05ecf5bf2c20fe32da21f8e795bffa 100644 (file)
@@ -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;
 }