From: Christian Grothoff Date: Fri, 15 Jul 2011 11:49:01 +0000 (+0000) Subject: fix X-Git-Tag: initial-import-from-subversion-38251~17827 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=f4b947f76c27bfbc6a15bedb114ce89c1060694c;p=oweals%2Fgnunet.git fix --- diff --git a/src/dv/test_transport_api_dv.c b/src/dv/test_transport_api_dv.c index 786376eb7..8b42c4311 100644 --- a/src/dv/test_transport_api_dv.c +++ b/src/dv/test_transport_api_dv.c @@ -879,7 +879,7 @@ static void all_connect_handler (void *cls, { struct GNUNET_TESTING_Daemon *d = cls; struct GNUNET_TESTING_Daemon *second_daemon; - char *second_shortname = strdup(GNUNET_i2s(peer)); + char *second_shortname; #if !TEST_ALL struct TestMessageContext *temp_context; #endif @@ -887,21 +887,23 @@ static void all_connect_handler (void *cls, if (0 == memcmp(&d->id, peer, sizeof(struct GNUNET_PeerIdentity))) return; - + second_shortname = GNUNET_strdup (GNUNET_i2s(peer)); distance = get_atsi_distance(atsi); #if VERBOSE - GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "connected peer %s to peer %s, distance %u\n", - d->shortname, - second_shortname, - distance); + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "connected peer %s to peer %s, distance %u\n", + d->shortname, + second_shortname, + distance); #endif second_daemon = GNUNET_CONTAINER_multihashmap_get(peer_daemon_hash, &peer->hashPubKey); if (second_daemon == NULL) { - GNUNET_log (GNUNET_ERROR_TYPE_WARNING, "Couldn't find second peer!\n"); + GNUNET_log (GNUNET_ERROR_TYPE_WARNING, + "Couldn't find second peer!\n"); GNUNET_free(second_shortname); return; }