diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-07-19 23:54:15 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-07-19 23:54:15 +0000 |
commit | 5ef6520d4ed043e40876b309feb5a83808f0dc28 (patch) | |
tree | ce509d520d22a887fb086539afc01a07a0276d33 | |
parent | 2c1925161eaa3a4d20e3c870a558911d96cedb5f (diff) |
fixed the CONNECT thing again
-rw-r--r-- | tests/server/sws.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c index bb29a3dc8..0157d9e5c 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -604,7 +604,7 @@ int main(int argc, char *argv[]) if(open) logmsg("persistant connection, awaits new request"); /* if we got a CONNECT, loop and get another request as well! */ - } while(open); + } while(open || (doc == DOCNUMBER_CONNECT)); logmsg("Closing client connection"); close(msgsock); |