diff options
author | Stefan Metzmacher <metze@sernet.de> | 2008-01-30 10:34:57 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-01-19 07:05:21 +0100 |
commit | 996790719066d92f563bf53fe4222d2b5e3863a5 (patch) | |
tree | 6c679b901d826c2b0894b8a4df141f2ea0fd3bc0 /lib/util/util_str.c | |
parent | 9d4f766ae35176b0597dd359d692e4166c2314fc (diff) | |
download | samba-996790719066d92f563bf53fe4222d2b5e3863a5.tar.gz samba-996790719066d92f563bf53fe4222d2b5e3863a5.tar.xz samba-996790719066d92f563bf53fe4222d2b5e3863a5.zip |
util_str: setup the correct talloc name for strings
metze
(partly from samba4wins tree 447e7f9532131117e896712db9def321c96718eb)
Diffstat (limited to 'lib/util/util_str.c')
-rw-r--r-- | lib/util/util_str.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/util/util_str.c b/lib/util/util_str.c index 7dcefc90dd..a2c50fd38f 100644 --- a/lib/util/util_str.c +++ b/lib/util/util_str.c @@ -153,6 +153,8 @@ _PUBLIC_ const char *str_format_nbt_domain(TALLOC_CTX *mem_ctx, const char *s) } } + talloc_set_name_const(ret, ret); + return ret; } |