aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/peerstore_api.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2014-06-11 08:53:09 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2014-06-11 08:53:09 +0000
commit464bc25469fa8c415d0a852ca374da3593bc94a6 (patch)
treed02d9d190802021ee6f91f41632d7e650c3298e2 /src/peerstore/peerstore_api.c
parentbdb2332aea0b10271be0096fb4ed18aefe79ea95 (diff)
downloadgnunet-464bc25469fa8c415d0a852ca374da3593bc94a6.tar.gz
gnunet-464bc25469fa8c415d0a852ca374da3593bc94a6.zip
added fixme
Diffstat (limited to 'src/peerstore/peerstore_api.c')
-rw-r--r--src/peerstore/peerstore_api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peerstore/peerstore_api.c b/src/peerstore/peerstore_api.c
index b53bc2f1a..bf5fb3529 100644
--- a/src/peerstore/peerstore_api.c
+++ b/src/peerstore/peerstore_api.c
@@ -284,7 +284,7 @@ handle_client_error (void *cls, enum GNUNET_MQ_Error error)
284{ 284{
285 struct GNUNET_PEERSTORE_Handle *h = cls; 285 struct GNUNET_PEERSTORE_Handle *h = cls;
286 286
287 LOG(GNUNET_ERROR_TYPE_ERROR, "Received an error notification from MQ of type: %d\n", error); 287 LOG(GNUNET_ERROR_TYPE_ERROR, _("Received an error notification from MQ of type: %d\n"), error);
288 reconnect(h); 288 reconnect(h);
289} 289}
290 290
@@ -551,7 +551,7 @@ void handle_iterate_result (void *cls, const struct GNUNET_MessageHeader *msg)
551 ic = h->iterate_head; 551 ic = h->iterate_head;
552 if(NULL == ic) 552 if(NULL == ic)
553 { 553 {
554 LOG(GNUNET_ERROR_TYPE_ERROR, "Unexpected iteration response, this should not happen.\n"); 554 LOG(GNUNET_ERROR_TYPE_ERROR, _("Unexpected iteration response, this should not happen.\n"));
555 reconnect(h); 555 reconnect(h);
556 return; 556 return;
557 } 557 }