summaryrefslogtreecommitdiffstats
path: root/source/include
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2002-12-20 20:23:06 +0000
committerJeremy Allison <jra@samba.org>2002-12-20 20:23:06 +0000
commit842e08e52a665ae678eea239759bb2de1a0d7b33 (patch)
treed000cda1f530565beb52305474c8f7026b073706 /source/include
parenta2159610b9d38cc7cfa7cb877ccee816cd2206b8 (diff)
downloadsamba-842e08e52a665ae678eea239759bb2de1a0d7b33.tar.gz
samba-842e08e52a665ae678eea239759bb2de1a0d7b33.tar.xz
samba-842e08e52a665ae678eea239759bb2de1a0d7b33.zip
Forward port the change to talloc_init() to make all talloc contexts
named. Ensure we can query them. Jeremy.
Diffstat (limited to 'source/include')
-rw-r--r--source/include/talloc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/include/talloc.h b/source/include/talloc.h
index 64a58830413..4badddbb880 100644
--- a/source/include/talloc.h
+++ b/source/include/talloc.h
@@ -32,7 +32,7 @@
**/
typedef struct talloc_ctx TALLOC_CTX;
-TALLOC_CTX *talloc_init_named(char const *fmt, ...) PRINTF_ATTRIBUTE(1, 2);
+TALLOC_CTX *talloc_init(char const *fmt, ...) PRINTF_ATTRIBUTE(1, 2);
char *talloc_vasprintf(TALLOC_CTX *t, const char *fmt, va_list ap)
PRINTF_ATTRIBUTE(2, 0);