summaryrefslogtreecommitdiff
path: root/source3/sam/interface.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-12-22 16:02:36 +0000
committerJeremy Allison <jra@samba.org>2002-12-22 16:02:36 +0000
commitb95b82b798704d75403c4cf06ce6a10a6161b501 (patch)
tree500813446914d42c61bbb36e4f1cd013eed4932f /source3/sam/interface.c
parent7f23546730e49569d41a5edd0c47bb559c4f812d (diff)
downloadsamba-b95b82b798704d75403c4cf06ce6a10a6161b501.tar.gz
samba-b95b82b798704d75403c4cf06ce6a10a6161b501.tar.bz2
samba-b95b82b798704d75403c4cf06ce6a10a6161b501.zip
talloc_init_named -> talloc_init.
Jeremy. (This used to be commit 20a44d4cf11d91e7a09176bfe673ad0cb230dffe)
Diffstat (limited to 'source3/sam/interface.c')
-rw-r--r--source3/sam/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/sam/interface.c b/source3/sam/interface.c
index d08df42122..51ae561999 100644
--- a/source3/sam/interface.c
+++ b/source3/sam/interface.c
@@ -384,7 +384,7 @@ NTSTATUS make_sam_context(SAM_CONTEXT **context)
{
TALLOC_CTX *mem_ctx;
- mem_ctx = talloc_init_named("sam_context internal allocation context");
+ mem_ctx = talloc_init("sam_context internal allocation context");
if (!mem_ctx) {
DEBUG(0, ("make_sam_context: talloc init failed!\n"));