diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-26 19:59:21 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-01-26 19:59:21 (GMT) |
commit | c38d07a84806fed9a98b05707cec411170a3255d (patch) | |
tree | ef0100fc1bd40b34ddc37e71b39b4c0fcf02b1e7 /library/http/http.tcl | |
parent | 8231fb69951a8e8b62cdd6d709a4d5dab17a34a0 (diff) | |
parent | 889858de26753cb512fda204a65783c308b7b576 (diff) | |
download | tcl-c38d07a84806fed9a98b05707cec411170a3255d.zip tcl-c38d07a84806fed9a98b05707cec411170a3255d.tar.gz tcl-c38d07a84806fed9a98b05707cec411170a3255d.tar.bz2 |
merge to feature branchrfe_3464401
Diffstat (limited to 'library/http/http.tcl')
-rw-r--r-- | library/http/http.tcl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index e8a7c1e..bc8ae7f 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -22,7 +22,7 @@ package require Tcl 8.4 # Keep this in sync with pkgIndex.tcl and with the install directories # in Makefiles -package provide http 2.5.5 +package provide http 2.5.6 namespace eval http { variable http @@ -707,10 +707,10 @@ proc http::cleanup {token} { proc http::Connect {token} { variable $token upvar 0 $token state - global errorInfo errorCode + set err "due to unexpected EOF" if {[eof $state(sock)] || - [string length [fconfigure $state(sock) -error]]} { - Finish $token "connect failed [fconfigure $state(sock) -error]" 1 + [string length [set err [fconfigure $state(sock) -error]]]} { + Finish $token "connect failed $err" 1 } else { set state(status) connect fileevent $state(sock) writable {} |