aboutsummaryrefslogtreecommitdiffstats
path: root/tools/checkAPIs.pl
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2012-02-24 19:02:28 +0000
committerBill Meier <wmeier@newsguy.com>2012-02-24 19:02:28 +0000
commitd0e99235067634385db7cdffa3807c15efc0de21 (patch)
treeca2ffe575f46b84c401c64f64a840a64fc4fe0ce /tools/checkAPIs.pl
parent605dea048690dc49e7aeca9fa58440437c45af60 (diff)
g_fprintf() & g_vfprintf() should not be used....
svn path=/trunk/; revision=41181
Diffstat (limited to 'tools/checkAPIs.pl')
-rwxr-xr-xtools/checkAPIs.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/checkAPIs.pl b/tools/checkAPIs.pl
index fd469eb5cb..60a6d3ef9c 100755
--- a/tools/checkAPIs.pl
+++ b/tools/checkAPIs.pl
@@ -68,6 +68,10 @@ my %APIs = (
'strndup',
# Windows doesn't have this; use g_ascii_strtoull() instead
'strtoull',
+ ### non-portable: fails on Windows Wireshark built with VC newer than VC6
+ # See https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6695#c2
+ 'g_fprintf',
+ 'g_vfprintf',
### non-ANSI C
# use memset, memcpy, memcmp instead of these:
'bzero',