aboutsummaryrefslogtreecommitdiffstats
path: root/wsutil/inet_v6defs.h
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-09-15 21:41:27 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-09-15 21:41:27 +0000
commite8bee3d12e115079e81e9b3071faf3123000ecf9 (patch)
tree530236a21bac3dce196561fab331ab3fc294001f /wsutil/inet_v6defs.h
parent84c08f1472f0f755503b25c7d9977612cbfc0050 (diff)
Also rename inet_ntop() on Windows
svn path=/trunk/; revision=34129
Diffstat (limited to 'wsutil/inet_v6defs.h')
-rw-r--r--wsutil/inet_v6defs.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/wsutil/inet_v6defs.h b/wsutil/inet_v6defs.h
index f02faf0f7e..c6cfa8fdec 100644
--- a/wsutil/inet_v6defs.h
+++ b/wsutil/inet_v6defs.h
@@ -29,13 +29,14 @@
* don't have it.
*/
-/* Windows does not have inet_pton() until Vista. In order to allow binaries
- * compiled on Vista or later to work on pre-Vista Windows (without resorting
- * to fragile link ordering tricks), we rename our inet_pton() to
- * ws_inet_pton().
+/* Windows does not have inet_pton() and inet_pton() until Vista. In order
+ * to allow binaries compiled on Vista or later to work on pre-Vista Windows
+ * (without resorting to fragile link ordering tricks), we give our versions
+ * of those functions Wireshark-specific names.
*/
#ifdef WIN32
#define inet_pton ws_inet_pton
+#define inet_ntop ws_inet_ntop
#endif
extern int inet_pton(int af, const char *src, void *dst);