summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-01-28 00:54:37 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-01-28 00:54:37 +0000
commit9d62f25f5d3c25d71d8b87801084d42ae9b66f8c (patch)
treed61874f31acf75006265fbd5ed2d3a243e606052
parenta034bfb9ef7a4c8a127ac91f4163cc6af98f29b3 (diff)
downloadsamba-9d62f25f5d3c25d71d8b87801084d42ae9b66f8c.tar.gz
samba-9d62f25f5d3c25d71d8b87801084d42ae9b66f8c.tar.xz
samba-9d62f25f5d3c25d71d8b87801084d42ae9b66f8c.zip
Name another talloc.
-rw-r--r--source/libsmb/clientgen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/libsmb/clientgen.c b/source/libsmb/clientgen.c
index 022046ceb28..50f9a7dc814 100644
--- a/source/libsmb/clientgen.c
+++ b/source/libsmb/clientgen.c
@@ -208,7 +208,7 @@ struct cli_state *cli_initialise(struct cli_state *cli)
if (!cli->outbuf || !cli->inbuf)
goto error;
- if ((cli->mem_ctx = talloc_init()) == NULL)
+ if ((cli->mem_ctx = talloc_init_named("cli based talloc")) == NULL)
goto error;
memset(cli->outbuf, 0, cli->bufsize);