aboutsummaryrefslogtreecommitdiff
path: root/src/stream/test_stream_local.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/stream/test_stream_local.c')
-rw-r--r--src/stream/test_stream_local.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/stream/test_stream_local.c b/src/stream/test_stream_local.c
index af4e057d7..125fc6df8 100644
--- a/src/stream/test_stream_local.c
+++ b/src/stream/test_stream_local.c
@@ -204,6 +204,9 @@ write_completion (void *cls,
204 GNUNET_assert (size <= strlen (data)); 204 GNUNET_assert (size <= strlen (data));
205 peer->bytes_wrote += size; 205 peer->bytes_wrote += size;
206 206
207 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
208 "Writing completed\n");
209
207 if (peer->bytes_wrote < strlen(data)) /* Have more data to send */ 210 if (peer->bytes_wrote < strlen(data)) /* Have more data to send */
208 { 211 {
209 peer->io_write_handle = 212 peer->io_write_handle =
@@ -319,7 +322,7 @@ input_processor (void *cls,
319 { 322 {
320 GNUNET_SCHEDULER_add_now (&do_shutdown, NULL); 323 GNUNET_SCHEDULER_add_now (&do_shutdown, NULL);
321 } 324 }
322 } 325 }
323 return size; 326 return size;
324} 327}
325 328