aboutsummaryrefslogtreecommitdiff
path: root/src/util/bio.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-06 13:29:16 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-06 13:29:16 +0000
commit0ce4db5534d634cca6dc001eae43a8907e9c5cf2 (patch)
tree16ff05081235dc37001cc20d63f052817ae959e2 /src/util/bio.c
parent7c08695824b0e8526ed6c26e7b29475f4faf8cfd (diff)
downloadgnunet-0ce4db5534d634cca6dc001eae43a8907e9c5cf2.tar.gz
gnunet-0ce4db5534d634cca6dc001eae43a8907e9c5cf2.zip
removing debug code
Diffstat (limited to 'src/util/bio.c')
-rw-r--r--src/util/bio.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/util/bio.c b/src/util/bio.c
index 976da7e01..059638ff1 100644
--- a/src/util/bio.c
+++ b/src/util/bio.c
@@ -129,7 +129,6 @@ GNUNET_BIO_read (struct GNUNET_BIO_ReadHandle *h,
129 GNUNET_asprintf (&h->emsg, 129 GNUNET_asprintf (&h->emsg,
130 _("Error reading `%s': %s"), 130 _("Error reading `%s': %s"),
131 what, STRERROR (errno)); 131 what, STRERROR (errno));
132 abort ();
133 return GNUNET_SYSERR; 132 return GNUNET_SYSERR;
134 } 133 }
135 if (ret == 0) 134 if (ret == 0)
@@ -137,7 +136,6 @@ GNUNET_BIO_read (struct GNUNET_BIO_ReadHandle *h,
137 GNUNET_asprintf (&h->emsg, 136 GNUNET_asprintf (&h->emsg,
138 _("Error reading `%s': %s"), 137 _("Error reading `%s': %s"),
139 what, _("End of file")); 138 what, _("End of file"));
140 abort ();
141 return GNUNET_SYSERR; 139 return GNUNET_SYSERR;
142 } 140 }
143 h->pos = 0; 141 h->pos = 0;