diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-12-21 15:23:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:07:35 -0500 |
commit | c533379c904866503778148d7cfbf99ba5989a7c (patch) | |
tree | 28b1b69d48b5360a8caaf8963a866fd5ca3473b4 /source4/include/talloc.h | |
parent | 3e7c0e10cfe956692834b952cec9e5f0f4a980b4 (diff) | |
download | samba-c533379c904866503778148d7cfbf99ba5989a7c.tar.gz samba-c533379c904866503778148d7cfbf99ba5989a7c.tar.bz2 samba-c533379c904866503778148d7cfbf99ba5989a7c.zip |
r4328: mark the talloc data as DATA_BLOB
metze
(This used to be commit ad84e3b2e3b48406576a8ba2ebfd218cddae135d)
Diffstat (limited to 'source4/include/talloc.h')
-rw-r--r-- | source4/include/talloc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/include/talloc.h b/source4/include/talloc.h index 18c31c6935..ffb4c9f252 100644 --- a/source4/include/talloc.h +++ b/source4/include/talloc.h @@ -49,8 +49,8 @@ typedef void TALLOC_CTX; #define malloc_array_p(type, count) (type *)realloc_array(NULL, sizeof(type), count) #define realloc_p(p, type, count) (type *)realloc_array(p, sizeof(type), count) -#define data_blob(ptr, size) data_blob_named(ptr, size, __location__) -#define data_blob_talloc(ctx, ptr, size) data_blob_talloc_named(ctx, ptr, size, __location__) +#define data_blob(ptr, size) data_blob_named(ptr, size, "DATA_BLOB: "__location__) +#define data_blob_talloc(ctx, ptr, size) data_blob_talloc_named(ctx, ptr, size, "DATA_BLOB: "__location__) #ifndef PRINTF_ATTRIBUTE #define PRINTF_ATTRIBUTE(a1, a2) |