aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-04-11 07:13:28 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-04-11 07:13:28 +0000
commite132b6bb24d841ad5587c25e28052df55ea0bfc9 (patch)
treeae393b25d26574bb39abd4ef3b302a8047a0b848
parent236f10ac9887c9c916efacbbcb4ae4a371138289 (diff)
downloadgnunet-e132b6bb24d841ad5587c25e28052df55ea0bfc9.tar.gz
gnunet-e132b6bb24d841ad5587c25e28052df55ea0bfc9.zip
fix?
-rw-r--r--src/peerinfo-tool/gnunet-peerinfo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peerinfo-tool/gnunet-peerinfo.c b/src/peerinfo-tool/gnunet-peerinfo.c
index 6a5ae08cb..551f2daa4 100644
--- a/src/peerinfo-tool/gnunet-peerinfo.c
+++ b/src/peerinfo-tool/gnunet-peerinfo.c
@@ -424,7 +424,7 @@ dump_my_hello (void *cls, const struct GNUNET_PeerIdentity *peer,
424 if (NULL == hello) 424 if (NULL == hello)
425 { 425 {
426 FPRINTF (stderr, 426 FPRINTF (stderr,
427 _("Failure: Did not receive HELLO\n")); 427 _("Failure: Did not receive %s\n"), "HELLO");
428 return; 428 return;
429 } 429 }
430 430
@@ -432,7 +432,7 @@ dump_my_hello (void *cls, const struct GNUNET_PeerIdentity *peer,
432 if (0 == size) 432 if (0 == size)
433 { 433 {
434 FPRINTF (stderr, 434 FPRINTF (stderr,
435 _("Failure: Received invalid HELLO\n")); 435 _("Failure: Received invalid %s\n"), "HELLO");
436 return; 436 return;
437 } 437 }
438 if (GNUNET_SYSERR == GNUNET_DISK_fn_write (dump_hello, hello, size, 438 if (GNUNET_SYSERR == GNUNET_DISK_fn_write (dump_hello, hello, size,