From 95d968d86341dcdfe4271eedb08068dfaab21c22 Mon Sep 17 00:00:00 2001 From: "Nathan S. Evans" Date: Tue, 6 Apr 2010 13:33:37 +0000 Subject: [PATCH] hashing fix --- src/dht/gnunet-service-dht.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/dht/gnunet-service-dht.c b/src/dht/gnunet-service-dht.c index 77073904f..60a91eb3d 100644 --- a/src/dht/gnunet-service-dht.c +++ b/src/dht/gnunet-service-dht.c @@ -467,9 +467,6 @@ static void handle_dht_get (void *cls, struct GNUNET_DHT_GetMessage *get_msg, struct DHT_MessageContext *message_context) { -#if DEBUG_DHT - GNUNET_HashCode get_key; -#endif size_t get_type; unsigned int results; struct DatacacheGetContext *datacache_get_context; @@ -481,7 +478,7 @@ handle_dht_get (void *cls, struct GNUNET_DHT_GetMessage *get_msg, #if DEBUG_DHT GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "`%s': Received `%s' request from client, message type %d, key %s, uid %llu\n", - "DHT", "GET", get_type, GNUNET_h2s (&get_key), + "DHT", "GET", get_type, GNUNET_h2s (message_context->key), message_context->unique_id); #endif -- 2.25.1