Author: jra Date: 2007-08-29 01:48:46 +0000 (Wed, 29 Aug 2007) New Revision: 24762
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24762 Log: Fix the build, missed TALLOC_SIZE -> talloc_named_const. Jeremy. Modified: branches/SAMBA_3_2/source/include/smb_macros.h branches/SAMBA_3_2_0/source/include/smb_macros.h Changeset: Modified: branches/SAMBA_3_2/source/include/smb_macros.h =================================================================== --- branches/SAMBA_3_2/source/include/smb_macros.h 2007-08-29 01:40:58 UTC (rev 24761) +++ branches/SAMBA_3_2/source/include/smb_macros.h 2007-08-29 01:48:46 UTC (rev 24762) @@ -299,7 +299,7 @@ #define TALLOC_ZERO(ctx, size) _talloc_zero(ctx, size, __location__) #define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type) -#define TALLOC_SIZE(ctx, size) talloc(ctx, size, __location__) +#define TALLOC_SIZE(ctx, size) talloc_named_const(ctx, size, __location__) #define TALLOC_ZERO_SIZE(ctx, size) _talloc_zero(ctx, size, __location__) #endif Modified: branches/SAMBA_3_2_0/source/include/smb_macros.h =================================================================== --- branches/SAMBA_3_2_0/source/include/smb_macros.h 2007-08-29 01:40:58 UTC (rev 24761) +++ branches/SAMBA_3_2_0/source/include/smb_macros.h 2007-08-29 01:48:46 UTC (rev 24762) @@ -300,7 +300,7 @@ #define TALLOC_ZERO(ctx, size) _talloc_zero(ctx, size, __location__) #define TALLOC_ZERO_P(ctx, type) (type *)_talloc_zero(ctx, sizeof(type), #type) #define TALLOC_ZERO_ARRAY(ctx, type, count) (type *)_talloc_zero_array(ctx, sizeof(type), count, #type) -#define TALLOC_SIZE(ctx, size) talloc(ctx, size, __location__) +#define TALLOC_SIZE(ctx, size) talloc_named_const(ctx, size, __location__) #define TALLOC_ZERO_SIZE(ctx, size) _talloc_zero(ctx, size, __location__) #endif