diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-01-28 00:54:37 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-01-28 00:54:37 +0000 |
commit | 7c822ae3fff114d796ab18a0ff0fb8abde560659 (patch) | |
tree | aa3051a745f9bfdf1706d4ab56a6999c16c0efe9 /source3/libsmb | |
parent | c889c29d0d816a2f5641dabaa4c3c7ebdc60b5a8 (diff) | |
download | samba-7c822ae3fff114d796ab18a0ff0fb8abde560659.tar.gz samba-7c822ae3fff114d796ab18a0ff0fb8abde560659.tar.bz2 samba-7c822ae3fff114d796ab18a0ff0fb8abde560659.zip |
Name another talloc.
(This used to be commit 9d62f25f5d3c25d71d8b87801084d42ae9b66f8c)
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/clientgen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/clientgen.c b/source3/libsmb/clientgen.c index 022046ceb2..50f9a7dc81 100644 --- a/source3/libsmb/clientgen.c +++ b/source3/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); |