diff options
author | Stig Bjørlykke <stig@bjorlykke.org> | 2011-06-28 09:00:11 +0000 |
---|---|---|
committer | Stig Bjørlykke <stig@bjorlykke.org> | 2011-06-28 09:00:11 +0000 |
commit | 8443bbbf757ab65be172b294ff7c32cf93453de8 (patch) | |
tree | a97bda6f59cab16eea09e6e4caf2781785378177 /wsutil/Makefile.am | |
parent | 6c094f6775a72ab2cf362cc5b172393a97dd68f5 (diff) | |
download | wireshark-8443bbbf757ab65be172b294ff7c32cf93453de8.tar.gz wireshark-8443bbbf757ab65be172b294ff7c32cf93453de8.tar.bz2 wireshark-8443bbbf757ab65be172b294ff7c32cf93453de8.zip |
Replace all strerror() with g_strerror().
Remove our local strerror implementation.
Mark strerror as locale unsafe API.
This fixes bug 5715.
svn path=/trunk/; revision=37812
Diffstat (limited to 'wsutil/Makefile.am')
-rw-r--r-- | wsutil/Makefile.am | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/wsutil/Makefile.am b/wsutil/Makefile.am index 82a88aa655..8688c7376c 100644 --- a/wsutil/Makefile.am +++ b/wsutil/Makefile.am @@ -54,12 +54,6 @@ else def_sym_filter_symbols += || /^ws_inet_pton/ endif -if NEED_STRERROR_LO -wsutil_optional_objects += @STRERROR_LO@ -else -def_sym_filter_symbols += || /^strerror/ -endif - if NEED_STRNCASECMP_LO wsutil_optional_objects += @STRNCASECMP_LO@ else @@ -98,8 +92,6 @@ EXTRA_libwsutil_la_SOURCES= \ inet_ntop.c \ inet_pton.c \ inet_v6defs.h \ - strerror.c \ - strerror.h \ strncasecmp.c \ strptime.c \ strptime.h \ |