diff options
author | Martin Pool <mbp@samba.org> | 2002-01-03 05:57:21 +0000 |
---|---|---|
committer | Martin Pool <mbp@samba.org> | 2002-01-03 05:57:21 +0000 |
commit | 0b66e623f22655d43361a8f1cd2e535416670ade (patch) | |
tree | 532c770666d10c59216ef81e0dc4fa136a734589 /source3 | |
parent | 5c1cb14d3e7e7c67d2409f7d2ff543b8c255cc0b (diff) | |
download | samba-0b66e623f22655d43361a8f1cd2e535416670ade.tar.gz samba-0b66e623f22655d43361a8f1cd2e535416670ade.tar.bz2 samba-0b66e623f22655d43361a8f1cd2e535416670ade.zip |
Put a name on lp_talloc pool
(This used to be commit 472121749460a73f684bdbd02b828e89fad101af)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 724d10c2fa..01e5fb27aa 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -1397,7 +1397,7 @@ static char *lp_string(const char *s) char *ret; if (!lp_talloc) - lp_talloc = talloc_init(); + lp_talloc = talloc_init_named("lp_talloc"); ret = (char *)talloc(lp_talloc, len + 100); /* leave room for substitution */ |