aboutsummaryrefslogtreecommitdiff
path: root/src/core/gnunet-core.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-30 21:03:31 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-30 21:03:31 +0000
commit6d5b099541c60303b664547f18f4aaa864e33d68 (patch)
tree3169f571d3f66ec23ab540d17c012f00103688f2 /src/core/gnunet-core.c
parenta0ba5b741b56036bd35bd9ba88164324b2ff7ada (diff)
downloadgnunet-6d5b099541c60303b664547f18f4aaa864e33d68.tar.gz
gnunet-6d5b099541c60303b664547f18f4aaa864e33d68.zip
-getting core, nse, testbed, ats-tool and peerinfo-tool to compile again (part of #3047)
Diffstat (limited to 'src/core/gnunet-core.c')
-rw-r--r--src/core/gnunet-core.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/core/gnunet-core.c b/src/core/gnunet-core.c
index 9bfd18ec9..cfdae33bf 100644
--- a/src/core/gnunet-core.c
+++ b/src/core/gnunet-core.c
@@ -75,12 +75,10 @@ static void
75connected_peer_callback (void *cls, 75connected_peer_callback (void *cls,
76 const struct GNUNET_PeerIdentity *peer) 76 const struct GNUNET_PeerIdentity *peer)
77{ 77{
78 struct GNUNET_CRYPTO_HashAsciiEncoded enc;
79
80 if (NULL == peer) 78 if (NULL == peer)
81 return; 79 return;
82 GNUNET_CRYPTO_hash_to_enc (&peer->hashPubKey, &enc); 80 printf (_("Peer `%s'\n"),
83 printf (_("Peer `%s'\n"), (const char *) &enc); 81 GNUNET_i2s_full (peer));
84} 82}
85 83
86 84