aboutsummaryrefslogtreecommitdiffstats
path: root/socket.c
diff options
context:
space:
mode:
Diffstat (limited to 'socket.c')
-rw-r--r--socket.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/socket.c b/socket.c
index 6af77ef3..9bfc5485 100644
--- a/socket.c
+++ b/socket.c
@@ -76,7 +76,12 @@ FILE *sockopen(char *host, int clientPort)
fp = fdopen(sock, "r+");
#ifdef FOO
- /* for unknown reasons, this results in horrible lossage */
+ /*
+ * For unknown reasons, this results in horrible lossage.
+ * To see this, condition in this line, generate a test pattern
+ * of 8K, fetch it, and watch it garble the test pattern.
+ * I think there's a bug in stdio lurking here.
+ */
setvbuf(fp, sbuf, _IOLBF, INTERNAL_BUFSIZE);
#endif /* FOO */