aboutsummaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2010-05-06 09:02:26 +0000
committerChristian Grothoff <christian@grothoff.org>2010-05-06 09:02:26 +0000
commit83daee42f7b70d58b1fdf18b5ef3b848bb12a623 (patch)
tree8fa673c7b6e5f5109c51d84a8cc705cfcec0bde5 /src/core
parent3daac5abcd5ae5f7029dc686cc9abab9fda81ceb (diff)
downloadgnunet-83daee42f7b70d58b1fdf18b5ef3b848bb12a623.tar.gz
gnunet-83daee42f7b70d58b1fdf18b5ef3b848bb12a623.zip
dbg
Diffstat (limited to 'src/core')
-rw-r--r--src/core/core_api.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/core_api.c b/src/core/core_api.c
index 42e8f1c06..9fd90b127 100644
--- a/src/core/core_api.c
+++ b/src/core/core_api.c
@@ -547,10 +547,11 @@ init_reply_handler (void *cls, const struct GNUNET_MessageHeader *msg)
547 (ntohs (msg->size) != sizeof (struct InitReplyMessage)) || 547 (ntohs (msg->size) != sizeof (struct InitReplyMessage)) ||
548 (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY)) 548 (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY))
549 { 549 {
550 GNUNET_log (GNUNET_ERROR_TYPE_INFO, 550 GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
551 _ 551 _
552 ("Error connecting to core service (failed to receive `%s' message).\n"), 552 ("Error connecting to core service (failed to receive `%s' message, got message of type %u).\n"),
553 "INIT_REPLY"); 553 "INIT_REPLY",
554 ntohs (msg->type));
554 GNUNET_break (msg == NULL); 555 GNUNET_break (msg == NULL);
555 transmit_start (h, 0, NULL); 556 transmit_start (h, 0, NULL);
556 return; 557 return;