aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-06 12:13:18 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-06 12:13:18 +0000
commit723b9f11ab20aa6b2fa88840e2f5e52ae72d0b6c (patch)
tree72ad09793a59484584c2bfd0c0719cc7dd2a80a7 /src/core
parentb79a1b59f07258abc25a86f7347d954e61ea019a (diff)
downloadgnunet-723b9f11ab20aa6b2fa88840e2f5e52ae72d0b6c.tar.gz
gnunet-723b9f11ab20aa6b2fa88840e2f5e52ae72d0b6c.zip
dbg
Diffstat (limited to 'src/core')
-rw-r--r--src/core/core_api.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index 9fd90b127..f8c7c0aa6 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -549,9 +549,10 @@ init_reply_handler (void *cls, const struct GNUNET_MessageHeader *msg)
549 { 549 {
550 GNUNET_log (GNUNET_ERROR_TYPE_ERROR, 550 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
551 _ 551 _
552 ("Error connecting to core service (failed to receive `%s' message, got message of type %u).\n"), 552 ("Error connecting to core service (failed to receive `%s' message, got message of type %u and size %u).\n"),
553 "INIT_REPLY", 553 "INIT_REPLY",
554 ntohs (msg->type)); 554 (msg == NULL) ? -1 : ntohs (msg->type),
555 (msg == NULL) ? -1 : ntohs (msg->size));
555 GNUNET_break (msg == NULL); 556 GNUNET_break (msg == NULL);
556 transmit_start (h, 0, NULL); 557 transmit_start (h, 0, NULL);
557 return; 558 return;