diff options
author | redman <redman> | 1999-07-27 01:42:21 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-27 01:42:21 (GMT) |
commit | fd9ef8bf5fa340e0b2995c55613fbaa12653dbb0 (patch) | |
tree | 9f2d4d9a9a9b32df258998390716ed7d9de546d0 /tests/httpold.test | |
parent | 1f5265171e2ddeade8350713feba432d2d862d2f (diff) | |
download | tcl-fd9ef8bf5fa340e0b2995c55613fbaa12653dbb0.zip tcl-fd9ef8bf5fa340e0b2995c55613fbaa12653dbb0.tar.gz tcl-fd9ef8bf5fa340e0b2995c55613fbaa12653dbb0.tar.bz2 |
Bug fixes for threaded Tcl on NT with single and dual CPUs. Still some
open issues, this code is a little more stable though.
Diffstat (limited to 'tests/httpold.test')
-rw-r--r-- | tests/httpold.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/httpold.test b/tests/httpold.test index 50bb152..3e8aa76 100644 --- a/tests/httpold.test +++ b/tests/httpold.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: httpold.test,v 1.5 1999/06/26 03:54:14 jenn Exp $ +# RCS: @(#) $Id: httpold.test,v 1.6 1999/07/27 01:42:23 redman Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -79,6 +79,7 @@ proc httpdRead { sock } { if [regexp {(POST|GET|HEAD) ([^?]+)\??([^ ]*) HTTP/1.0} \ $line x data(proto) data(url) data(query)] { set data(state) mime + after 10 httpd_log $sock Query $line } else { httpdError $sock 400 |