marc 98/01/13 14:51:39
Modified: src/main buff.c
Log:
Add comment about broken non-blocking IO on win32.
Revision Changes Path
1.55 +1 -0 apachen/src/main/buff.c
Index: buff.c
===================================================================
RCS file: /export/home/cvs/apachen/src/main/buff.c,v
retrieving revision 1.54
retrieving revision 1.55
diff -u -r1.54 -r1.55
--- buff.c 1998/01/07 16:46:00 1.54
+++ buff.c 1998/01/13 22:51:37 1.55
@@ -459,6 +459,7 @@
#elif defined(F_NDELAY)
return fcntl(fd, F_SETFL, F_NDELAY);
#else
+ /* XXXX: this breaks things, but an alternative isn't obvious...*/
return 0;
#endif
}