aboutsummaryrefslogtreecommitdiff
path: root/src/social/gnunet-social.c
diff options
context:
space:
mode:
authorCarlo von lynX <lynX@time.to.get.psyced.org>2016-08-03 20:28:45 +0000
committerCarlo von lynX <lynX@time.to.get.psyced.org>2016-08-03 20:28:45 +0000
commitc5f879125f1c842f679b2c8e95341f3c1d3aa184 (patch)
treeb17e1e834cc199d61611d2176ddde284d245096f /src/social/gnunet-social.c
parent365eaaa2477eea227fde8503d6af56b3e12a84a1 (diff)
downloadgnunet-c5f879125f1c842f679b2c8e95341f3c1d3aa184.tar.gz
gnunet-c5f879125f1c842f679b2c8e95341f3c1d3aa184.zip
leaks & warns
Diffstat (limited to 'src/social/gnunet-social.c')
-rw-r--r--src/social/gnunet-social.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/social/gnunet-social.c b/src/social/gnunet-social.c
index 5aa74c81a..39ebff442 100644
--- a/src/social/gnunet-social.c
+++ b/src/social/gnunet-social.c
@@ -936,8 +936,10 @@ guest_reconnected (void *cls, int result,
936 const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key, 936 const struct GNUNET_CRYPTO_EddsaPublicKey *place_pub_key,
937 uint64_t max_message_id) 937 uint64_t max_message_id)
938{ 938{
939 char *place_pub_str = GNUNET_CRYPTO_eddsa_public_key_to_string (place_pub_key);
939 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, 940 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
940 "Guest reconnected to place %s.\n", GNUNET_CRYPTO_eddsa_public_key_to_string(place_pub_key)); 941 "Guest reconnected to place %s.\n", place_pub_str);
942 GNUNET_free (place_pub_str);
941 943
942 if (op_guest_leave) { 944 if (op_guest_leave) {
943 guest_leave (); 945 guest_leave ();