aboutsummaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
authorstaffcvs <>2008-03-02 10:50:32 +0000
committerstaffcvs <>2008-03-02 10:50:32 +0000
commitf1258ba9a13fd175b0db51aac7717c4f71f557ea (patch)
tree134c305c00a1bafdc395d94fa1965c4eac6805a1 /src/util.c
parentef21e0368adf8ae0e557e9c02fe776f69818ace6 (diff)
downloadsympathy-f1258ba9a13fd175b0db51aac7717c4f71f557ea.tar.gz
sympathy-f1258ba9a13fd175b0db51aac7717c4f71f557ea.tar.bz2
sympathy-f1258ba9a13fd175b0db51aac7717c4f71f557ea.zip
*** empty log message ***
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;