From e373f1fd739e653c71fbcb19669d5a021a39ec86 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 21 Apr 2004 06:56:54 +0000 Subject: log the WAIT command --- tests/server/sws.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tests/server/sws.c') diff --git a/tests/server/sws.c b/tests/server/sws.c index 96a302ffd..ebfa19759 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -639,8 +639,10 @@ static int send_doc(int sock, struct httprequest *req) char *ptr=cmd; do { if(2 == sscanf(ptr, "%31s %d", command, &num)) { - if(!strcmp("wait", command)) + if(!strcmp("wait", command)) { + logmsg("Told to sleep for %d seconds", num); sleep(num); /* wait this many seconds */ + } else logmsg("Unknown command in reply command section"); } -- cgit v1.2.3