From df3f7a53424e12a05a6816ca12e8436febe5983f Mon Sep 17 00:00:00 2001 From: nijtmans Date: Thu, 7 Oct 2010 23:36:27 +0000 Subject: On Windows, use gai_strerrorA --- ChangeLog | 4 ++++ generic/tclIOSock.c | 8 +++++++- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c23d9b4..9c67373 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2010-10-08 Jan Nijtmans + + * generic/tclIOSock.c: On Windows, use gai_strerrorA + 2010-10-06 Don Porter * tests/winPipe.test: Test hygiene with makeFile and removeFile. diff --git a/generic/tclIOSock.c b/generic/tclIOSock.c index 15de01e..2780462 100644 --- a/generic/tclIOSock.c +++ b/generic/tclIOSock.c @@ -8,10 +8,16 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclIOSock.c,v 1.12 2010/09/28 15:13:54 rmax Exp $ + * RCS: @(#) $Id: tclIOSock.c,v 1.13 2010/10/07 23:36:27 nijtmans Exp $ */ #include "tclInt.h" + +#if defined(_WIN32) && defined(UNICODE) +/* On Windows, we always need the ASCII version. */ +# undef gai_strerror +# define gai_strerror gai_strerrorA +#endif /* *--------------------------------------------------------------------------- -- cgit v0.12