diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-13 14:39:14 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2007-11-13 14:39:14 (GMT) |
commit | a4ad9e9083662f62f8f3df8f9901a114be5cbf24 (patch) | |
tree | d1972ae9fb8411771a5ca0f5d5a6f44025f6ab44 /unix/tclUnixCompat.c | |
parent | 14dffaee29a638e2bb45cb3a9d747315b1fd9f74 (diff) | |
download | tcl-a4ad9e9083662f62f8f3df8f9901a114be5cbf24.zip tcl-a4ad9e9083662f62f8f3df8f9901a114be5cbf24.tar.gz tcl-a4ad9e9083662f62f8f3df8f9901a114be5cbf24.tar.bz2 |
The six-argument form of getaddressbyname_r() uses the fifth argument to
indicate whether the lookup succeeded or not on at least one platform. [Bug
1618235]
Diffstat (limited to 'unix/tclUnixCompat.c')
-rw-r--r-- | unix/tclUnixCompat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixCompat.c b/unix/tclUnixCompat.c index 7e419cf..88c87c3 100644 --- a/unix/tclUnixCompat.c +++ b/unix/tclUnixCompat.c @@ -6,7 +6,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclUnixCompat.c,v 1.1.2.10 2006/09/12 22:05:03 andreas_kupries Exp $ + * RCS: @(#) $Id: tclUnixCompat.c,v 1.1.2.11 2007/11/13 14:39:15 dkf Exp $ * */ @@ -588,7 +588,7 @@ TclpGetHostByName(const char *name) int h_errno; return (gethostbyname_r(name, &tsdPtr->hent, tsdPtr->hbuf, sizeof(tsdPtr->hbuf), &hePtr, &h_errno) == 0) ? - &tsdPtr->hent : NULL; + &hePtr : NULL; #elif defined(HAVE_GETHOSTBYNAME_R_3) struct hostent_data data; |