diff options
author | max <max@tclers.tk> | 2012-06-26 08:05:18 (GMT) |
---|---|---|
committer | max <max@tclers.tk> | 2012-06-26 08:05:18 (GMT) |
commit | 4224d0a2e6ab6bbe9c3e6f84487cbf9371a168c1 (patch) | |
tree | 23048c867d271af90c3f916a04714fda3de840b3 /unix | |
parent | ee31f09c473f73d2089d8c95d2e244222d4d247b (diff) | |
download | tcl-4224d0a2e6ab6bbe9c3e6f84487cbf9371a168c1.zip tcl-4224d0a2e6ab6bbe9c3e6f84487cbf9371a168c1.tar.gz tcl-4224d0a2e6ab6bbe9c3e6f84487cbf9371a168c1.tar.bz2 |
Use EAI_SYSTEM only if it exists.
Diffstat (limited to 'unix')
-rw-r--r-- | unix/tclUnixSock.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/unix/tclUnixSock.c b/unix/tclUnixSock.c index f6abfd5..1e9d4eb 100644 --- a/unix/tclUnixSock.c +++ b/unix/tclUnixSock.c @@ -1117,12 +1117,7 @@ Tcl_OpenTcpClient( freeaddrinfo(addrlist); } if (interp != NULL) { - Tcl_AppendResult(interp, "couldn't open socket: ", NULL); - if (errorMsg == NULL) { - Tcl_AppendResult(interp, Tcl_PosixError(interp), NULL); - } else { - Tcl_AppendResult(interp, errorMsg, NULL); - } + Tcl_AppendResult(interp, "couldn't open socket: ", errorMsg, NULL); } return NULL; } |