diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-21 11:57:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-06-21 11:57:59 (GMT) |
commit | 694837ab79cb2b7f05fccf857081bb8a7579079e (patch) | |
tree | 6a3d302a05ef2fcf0dbb551b697ca261be61d978 /generic | |
parent | c12c83e799a79e5d1faa3dc446e1ef322eaa31fd (diff) | |
download | tcl-694837ab79cb2b7f05fccf857081bb8a7579079e.zip tcl-694837ab79cb2b7f05fccf857081bb8a7579079e.tar.gz tcl-694837ab79cb2b7f05fccf857081bb8a7579079e.tar.bz2 |
Don't use TclpInetNtoa any more, use inet_ntoa in stead. Since IP6 support it's even not necessary any more (except for fake-rfc2553, but mutexes are used here already) , but it's in the internal stub table so we cannot remove it until 9.0
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclIntPlatDecls.h | 2 | ||||
-rw-r--r-- | generic/tclStubInit.c | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/generic/tclIntPlatDecls.h b/generic/tclIntPlatDecls.h index dcf1753..3181d4e 100644 --- a/generic/tclIntPlatDecls.h +++ b/generic/tclIntPlatDecls.h @@ -545,6 +545,8 @@ extern const TclIntPlatStubs *tclIntPlatStubsPtr; #undef TclpGmtime_unix #undef TclWinConvertWSAError #define TclWinConvertWSAError TclWinConvertError +#undef TclpInetNtoa +#define TclpInetNtoa inet_ntoa #if defined(__WIN32__) || defined(__CYGWIN__) # undef TclWinNToHS diff --git a/generic/tclStubInit.c b/generic/tclStubInit.c index 1b04542..782bbdf 100644 --- a/generic/tclStubInit.c +++ b/generic/tclStubInit.c @@ -43,6 +43,7 @@ #undef TclSockMinimumBuffers #define TclBackgroundException Tcl_BackgroundException #undef Tcl_SetIntObj +#undef TclpInetNtoa /* See bug 510001: TclSockMinimumBuffers needs plat imp */ #ifdef _WIN64 |