summaryrefslogtreecommitdiff
path: root/source4/script/mkproto.pl
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2006-01-18 21:52:19 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 13:51:17 -0500
commitaecd9827c61cb5bc2c1f3dab784066c0d010d1d7 (patch)
tree278ff71437e1398595010c2f4ce8fd09a134fddf /source4/script/mkproto.pl
parentbade0ad9098153c26ec9a0f85e0a6e36b038b028 (diff)
downloadsamba-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)
Diffstat (limited to 'source4/script/mkproto.pl')
-rwxr-xr-xsource4/script/mkproto.pl6
1 files changed, 5 insertions, 1 deletions
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($$)