aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/util.c b/src/util.c
index 91cb58b..d63c142 100644
--- a/src/util.c
+++ b/src/util.c
@@ -10,6 +10,9 @@ static char rcsid[] = "$Id$";
/*
* $Log$
+ * Revision 1.8 2008/03/02 10:50:32 staffcvs
+ * *** empty log message ***
+ *
* Revision 1.7 2008/02/27 01:31:14 james
* *** empty log message ***
*
@@ -41,8 +44,10 @@ wrap_read (int fd, void *buf, int len)
int red;
red = read (fd, buf, len);
+#if 0
if (!red)
return -1;
+#endif
if ((red < 0) && (errno == EAGAIN))
red = 0;