From 30191d1a5704ad2b158386b511558972d539ce47 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Thu, 18 Oct 2007 17:40:25 -0700 Subject: RIP BOOL. Convert BOOL -> bool. I found a few interesting bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy. (This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f) --- source3/script/mkproto.awk | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source3/script/mkproto.awk') diff --git a/source3/script/mkproto.awk b/source3/script/mkproto.awk index fd38235e4e..a707378251 100644 --- a/source3/script/mkproto.awk +++ b/source3/script/mkproto.awk @@ -45,12 +45,12 @@ END { /^FN_LOCAL_BOOL/ { split($0,a,"[,()]") - printf "BOOL %s(int );\n", a[2] + printf "bool %s(int );\n", a[2] } /^FN_LOCAL_PARM_BOOL/ { split($0,a,"[,()]") - printf "BOOL %s(const struct share_params *p );\n", a[2] + printf "bool %s(const struct share_params *p );\n", a[2] } /^FN_LOCAL_PARM_INTEGER/ { @@ -90,7 +90,7 @@ END { /^FN_GLOBAL_BOOL/ { split($0,a,"[,()]") - printf "BOOL %s(void);\n", a[2] + printf "bool %s(void);\n", a[2] } /^FN_GLOBAL_LIST/ { @@ -139,7 +139,7 @@ END { gotstart = 1; } - if( $0 ~ /^smb_iconv_t|^long|^char|^uint|^NTSTATUS|^WERROR|^CLI_POLICY_HND|^struct|^bool|^BOOL|^void|^time|^smb_shm_offset_t|^shm_offset_t|^FILE|^XFILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT|^SMB_BIG_INT/ ) { + if( $0 ~ /^smb_iconv_t|^long|^char|^uint|^NTSTATUS|^WERROR|^CLI_POLICY_HND|^struct|^bool|^void|^time|^smb_shm_offset_t|^shm_offset_t|^FILE|^XFILE|^SMB_OFF_T|^size_t|^ssize_t|^SMB_BIG_UINT|^SMB_BIG_INT/ ) { gotstart = 1; } -- cgit