s3:registry: add db_context argument to regdb_delete_key_with_prefix()
authorMichael Adam <obnox@samba.org>
Fri, 3 Jul 2009 14:40:43 +0000 (16:40 +0200)
committerMichael Adam <obnox@samba.org>
Wed, 15 Jul 2009 12:01:41 +0000 (14:01 +0200)
Michael

source3/registry/reg_backend_db.c

index e296d319e29cb75e56d6c3c7c5cfc3c9795119a3..bdb237aafcb11e61b95bcc655d56ad59532e5776 100644 (file)
@@ -511,7 +511,8 @@ int regdb_get_seqnum(void)
 }
 
 
-static WERROR regdb_delete_key_with_prefix(const char *keyname,
+static WERROR regdb_delete_key_with_prefix(struct db_context *db,
+                                          const char *keyname,
                                           const char *prefix)
 {
        char *path;
@@ -537,7 +538,7 @@ static WERROR regdb_delete_key_with_prefix(const char *keyname,
                goto done;
        }
 
-       werr = ntstatus_to_werror(dbwrap_delete_bystring(regdb, path));
+       werr = ntstatus_to_werror(dbwrap_delete_bystring(db, path));
 
        /* treat "not" found" as ok */
        if (W_ERROR_EQUAL(werr, WERR_NOT_FOUND)) {
@@ -552,17 +553,17 @@ done:
 
 static WERROR regdb_delete_values(const char *keyname)
 {
-       return regdb_delete_key_with_prefix(keyname, REG_VALUE_PREFIX);
+       return regdb_delete_key_with_prefix(regdb, keyname, REG_VALUE_PREFIX);
 }
 
 static WERROR regdb_delete_secdesc(const char *keyname)
 {
-       return regdb_delete_key_with_prefix(keyname, REG_SECDESC_PREFIX);
+       return regdb_delete_key_with_prefix(regdb, keyname, REG_SECDESC_PREFIX);
 }
 
 static WERROR regdb_delete_subkeylist(const char *keyname)
 {
-       return regdb_delete_key_with_prefix(keyname, NULL);
+       return regdb_delete_key_with_prefix(regdb, keyname, NULL);
 }
 
 static WERROR regdb_delete_key_lists(const char *keyname)