From 72099d8f66dc4db6ac8a7632cb17870ef63b18ef Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Fri, 15 Jun 2007 23:47:40 +0000 Subject: r23512: Fix conflict in #define for SECDESC_PREFIX. Ensure all reg #defines use "REG_" prefix. Michael - please check gcc warnings on compiles. Jeremy. (This used to be commit 7885b68bb5df0ebe290feca0e74b4a20ef59e718) --- source3/registry/reg_db.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'source3/registry/reg_db.c') diff --git a/source3/registry/reg_db.c b/source3/registry/reg_db.c index a8e5ea665a..f166467c50 100644 --- a/source3/registry/reg_db.c +++ b/source3/registry/reg_db.c @@ -444,7 +444,7 @@ BOOL regdb_store_keys( const char *key, REGSUBKEY_CTR *ctr ) goto fail; } - pstr_sprintf( path, "%s/%s/%s", VALUE_PREFIX, key, + pstr_sprintf( path, "%s/%s/%s", REG_VALUE_PREFIX, key, oldkeyname ); normalize_reg_path( path ); @@ -637,7 +637,7 @@ int regdb_fetch_values( const char* key, REGVAL_CTR *values ) DEBUG(10,("regdb_fetch_values: Looking for value of key [%s] \n", key)); - pstr_sprintf( keystr, "%s/%s", VALUE_PREFIX, key ); + pstr_sprintf( keystr, "%s/%s", REG_VALUE_PREFIX, key ); normalize_reg_path( keystr ); data = tdb_fetch_bystring( tdb_reg->tdb, keystr ); @@ -682,7 +682,7 @@ BOOL regdb_store_values( const char *key, REGVAL_CTR *values ) SMB_ASSERT( len == data.dsize ); - pstr_sprintf( keystr, "%s/%s", VALUE_PREFIX, key ); + pstr_sprintf( keystr, "%s/%s", REG_VALUE_PREFIX, key ); normalize_reg_path( keystr ); ret = tdb_trans_store_bystring(tdb_reg->tdb, keystr, data, TDB_REPLACE); @@ -701,7 +701,7 @@ static WERROR regdb_get_secdesc(TALLOC_CTX *mem_ctx, const char *key, DEBUG(10, ("regdb_get_secdesc: Getting secdesc of key [%s]\n", key)); - if (asprintf(&tdbkey, "%s/%s", SECDESC_PREFIX, key) == -1) { + if (asprintf(&tdbkey, "%s/%s", REG_SECDESC_PREFIX, key) == -1) { return WERR_NOMEM; } normalize_dbkey(tdbkey); @@ -744,7 +744,7 @@ static WERROR regdb_set_secdesc(const char *key, ZERO_STRUCT(ps); - if (!(tdbkey = talloc_asprintf(mem_ctx, "%s/%s", SECDESC_PREFIX, + if (!(tdbkey = talloc_asprintf(mem_ctx, "%s/%s", REG_SECDESC_PREFIX, key))) { goto done; } -- cgit