svn commit: samba r4328 - in branches/SAMBA_4_0/source/include: .

metze at samba.org metze at samba.org
Tue Dec 21 15:23:33 GMT 2004


Author: metze
Date: 2004-12-21 15:23:33 +0000 (Tue, 21 Dec 2004)
New Revision: 4328

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=4328

Log:
mark the talloc data as DATA_BLOB

metze

Modified:
   branches/SAMBA_4_0/source/include/talloc.h


Changeset:
Modified: branches/SAMBA_4_0/source/include/talloc.h
===================================================================
--- branches/SAMBA_4_0/source/include/talloc.h	2004-12-21 15:15:49 UTC (rev 4327)
+++ branches/SAMBA_4_0/source/include/talloc.h	2004-12-21 15:23:33 UTC (rev 4328)
@@ -49,8 +49,8 @@
 #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)



More information about the samba-cvs mailing list