diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2011-05-12 21:07:47 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2011-05-12 21:07:47 (GMT) |
commit | 96524bb4dd0127496d2baf6792d0de093157297b (patch) | |
tree | 43b9f22dd3ab061695e46e4b6f9f802bb3c37f23 /library/http/http.tcl | |
parent | 8914432bfa2957d9abadd6f508a697ce3231d7f4 (diff) | |
download | tcl-96524bb4dd0127496d2baf6792d0de093157297b.zip tcl-96524bb4dd0127496d2baf6792d0de093157297b.tar.gz tcl-96524bb4dd0127496d2baf6792d0de093157297b.tar.bz2 |
[Bug 2715421] fix backported from 8.6 to remove extra newline from POSTs.
Package version incremented to 2.7.6.
Signed-off-by: Pat Thoyts <patthoyts@users.sourceforge.net>
Diffstat (limited to 'library/http/http.tcl')
-rw-r--r-- | library/http/http.tcl | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/library/http/http.tcl b/library/http/http.tcl index 87af637..aaef2b8 100644 --- a/library/http/http.tcl +++ b/library/http/http.tcl @@ -11,7 +11,7 @@ package require Tcl 8.4 # Keep this in sync with pkgIndex.tcl and with the install directories in # Makefiles -package provide http 2.7.5 +package provide http 2.7.6 namespace eval http { # Allow resourcing to not clobber existing data @@ -900,7 +900,6 @@ proc http::Write {token} { incr state(queryoffset) $state(-queryblocksize) if {$state(queryoffset) >= $state(querylength)} { set state(queryoffset) $state(querylength) - puts $sock "" set done 1 } } else { |