diff options
author | Andrew Bartlett <abartlet@samba.org> | 2006-01-18 21:52:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:51:17 -0500 |
commit | aecd9827c61cb5bc2c1f3dab784066c0d010d1d7 (patch) | |
tree | 278ff71437e1398595010c2f4ce8fd09a134fddf | |
parent | bade0ad9098153c26ec9a0f85e0a6e36b038b028 (diff) | |
download | samba-aecd9827c61cb5bc2c1f3dab784066c0d010d1d7.tar.gz samba-aecd9827c61cb5bc2c1f3dab784066c0d010d1d7.tar.bz2 samba-aecd9827c61cb5bc2c1f3dab784066c0d010d1d7.zip |
r13019: Again protect us against format string mismatches, with the new split
out proto headers.
The reason this is done in this way is that the attribute must be on
the prototype, not the actual function defintion. Hence the macros
which expand to nothing in the C file, but expand to an __attribute__
in the prototype header.
Andrew Bartlett
(This used to be commit a88933668f908a398bb0d8bc7dc39c96cee40de6)
-rw-r--r-- | source4/include/includes.h | 7 | ||||
-rwxr-xr-x | source4/script/mkproto.pl | 6 |
2 files changed, 9 insertions, 4 deletions
diff --git a/source4/include/includes.h b/source4/include/includes.h index 29c868ff39..ed8de0607d 100644 --- a/source4/include/includes.h +++ b/source4/include/includes.h @@ -112,12 +112,13 @@ struct ipv4_addr { #include "auth/credentials/credentials.h" #include "libcli/nbt/libnbt.h" -/***** automatically generated prototypes *****/ -#include "include/proto.h" -#include "basic.h" #undef _PRINTF_ATTRIBUTE #define _PRINTF_ATTRIBUTE(a1, a2) +/***** automatically generated prototypes *****/ +#include "basic.h" +#include "include/proto.h" + /* String routines */ #include "safe_string.h" diff --git a/source4/script/mkproto.pl b/source4/script/mkproto.pl index 2332cb06ab..9939fe0bf7 100755 --- a/source4/script/mkproto.pl +++ b/source4/script/mkproto.pl @@ -72,13 +72,17 @@ sub print_header($$) my ($file, $header_name) = @_; print $file "#ifndef $header_name\n"; print $file "#define $header_name\n\n"; + print $file "#undef _PRINTF_ATTRIBUTE\n"; + print $file "#define _PRINTF_ATTRIBUTE(a1, a2) PRINTF_ATTRIBUTE(a1, a2)\n"; print $file "/* This file was automatically generated by mkproto.pl. DO NOT EDIT */\n\n"; } sub print_footer($$) { my ($file, $header_name) = @_; - printf $file "\n#endif /* %s */\n", $header_name; + print $file "#undef _PRINTF_ATTRIBUTE\n"; + print $file "#define _PRINTF_ATTRIBUTE(a1, a2)\n"; + print $file "\n#endif /* $header_name */\n\n"; } sub handle_loadparm($$) |