diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-09-18 13:41:50 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:06:55 -0500 |
commit | c364bbbfa3441f40e3bcab76392d998163e7bf76 (patch) | |
tree | 2a01f02fa79607a784c442ee34359fd2468c71a3 /source4/lib/ldb/ldb_tdb | |
parent | df7fbf8cfdcf679d2dd48818176068dd9ad97ab6 (diff) | |
download | samba-c364bbbfa3441f40e3bcab76392d998163e7bf76.tar.gz samba-c364bbbfa3441f40e3bcab76392d998163e7bf76.tar.bz2 samba-c364bbbfa3441f40e3bcab76392d998163e7bf76.zip |
r25215: replace talloc_append_string() with talloc_strdup_append_buffer()
metze
(This used to be commit 8f2db3c130ce85d38f805836a7df039822ede066)
Diffstat (limited to 'source4/lib/ldb/ldb_tdb')
-rw-r--r-- | source4/lib/ldb/ldb_tdb/ldb_tdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/ldb_tdb/ldb_tdb.c b/source4/lib/ldb/ldb_tdb/ldb_tdb.c index 21661b1d46..3461f98d5f 100644 --- a/source4/lib/ldb/ldb_tdb/ldb_tdb.c +++ b/source4/lib/ldb/ldb_tdb/ldb_tdb.c @@ -145,7 +145,7 @@ struct TDB_DATA ltdb_key(struct ldb_module *module, struct ldb_dn *dn) goto failed; } - key_str = talloc_append_string(ldb, key_str, dn_folded); + key_str = talloc_strdup_append_buffer(key_str, dn_folded); if (!key_str) { goto failed; } |