Index: sws.c
===================================================================
RCS file: /cvsroot/curl/curl/tests/server/sws.c,v
retrieving revision 1.103
diff -u -r1.103 sws.c
--- sws.c	2 Oct 2007 10:13:37 -0000	1.103
+++ sws.c	3 Oct 2007 14:28:09 -0000
@@ -788,7 +788,6 @@
 #ifdef CURL_SWS_FORK_ENABLED
   bool use_fork = FALSE;
 #endif
-  int opt;
 
   while(argc>arg) {
     if(!strcmp("--version", argv[arg])) {
@@ -951,15 +950,17 @@
 #endif
     logmsg("====> Client connect");
 
+#ifdef TCP_NODELAY
     /*
      * Disable the Nagle algorithm to make it easier to send out a large
      * response in many small segments to torture the clients more.
      */
-    opt = 1;
+    flag = 1;
     if (setsockopt(msgsock, IPPROTO_TCP, TCP_NODELAY,
-                   (void *)&opt, sizeof(opt)) == -1) {
+                   (void *)&flag, sizeof(flag)) == -1) {
       logmsg("====> TCP_NODELAY failed");
     }
+#endif
 
   do {
       if(get_request(msgsock, &req))
