1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

lib ldb ldb_key_value: csbuild unused parm ldb_kv

Fixes csbuild error.

Error: COMPILER_WARNING:
lib/ldb/ldb_key_value/ldb_kv.c:158:33: warning: unused parameter
‘ldb_kv’ [-Wunused-parameter]

Signed-off-by: Gary Lockyer <gary@catalyst.net.nz>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Gary Lockyer 2019-06-07 14:38:59 +12:00 committed by Andreas Schneider
parent 8d2cfd45f8
commit 1593f77658
3 changed files with 5 additions and 7 deletions

View File

@ -153,8 +153,7 @@ failed:
}
/* The caller is to provide a correctly sized key */
int ldb_kv_guid_to_key(struct ldb_kv_private *ldb_kv,
const struct ldb_val *GUID_val,
int ldb_kv_guid_to_key(const struct ldb_val *GUID_val,
struct ldb_val *key)
{
const char *GUID_prefix = LDB_KV_GUID_KEY_PREFIX;
@ -184,7 +183,7 @@ int ldb_kv_idx_to_key(struct ldb_module *module,
struct ldb_dn *dn;
if (ldb_kv->cache->GUID_index_attribute != NULL) {
return ldb_kv_guid_to_key(ldb_kv, idx_val, key);
return ldb_kv_guid_to_key(idx_val, key);
}
dn = ldb_dn_from_ldb_val(mem_ctx, ldb, idx_val);
@ -256,7 +255,7 @@ struct ldb_val ldb_kv_key_msg(struct ldb_module *module,
}
key.length = talloc_get_size(key.data);
ret = ldb_kv_guid_to_key(ldb_kv, guid_val, &key);
ret = ldb_kv_guid_to_key(guid_val, &key);
if (ret != LDB_SUCCESS) {
errno = EINVAL;

View File

@ -281,8 +281,7 @@ struct ldb_val ldb_kv_key_dn(TALLOC_CTX *mem_ctx,
struct ldb_val ldb_kv_key_msg(struct ldb_module *module,
TALLOC_CTX *mem_ctx,
const struct ldb_message *msg);
int ldb_kv_guid_to_key(struct ldb_kv_private *ldb_kv,
const struct ldb_val *GUID_val,
int ldb_kv_guid_to_key(const struct ldb_val *GUID_val,
struct ldb_val *key);
int ldb_kv_idx_to_key(struct ldb_module *module,
struct ldb_kv_private *ldb_kv,

View File

@ -608,7 +608,7 @@ int ldb_kv_key_dn_from_idx(struct ldb_module *module,
}
/* The ldb_key memory is allocated by the caller */
ret = ldb_kv_guid_to_key(ldb_kv, &list->dn[index], ldb_key);
ret = ldb_kv_guid_to_key(&list->dn[index], ldb_key);
TALLOC_FREE(list);
if (ret != LDB_SUCCESS) {