From: LRN Date: Sat, 29 Sep 2012 19:36:48 +0000 (+0000) Subject: Missing declarations X-Git-Tag: initial-import-from-subversion-38251~11556 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=67bbd4de1105d5afe7aec48d1ecd7a7da9d1043a;p=oweals%2Fgnunet.git Missing declarations --- diff --git a/src/gns/gnunet-service-gns.c b/src/gns/gnunet-service-gns.c index c5c5ac2bf..0b617b0cd 100644 --- a/src/gns/gnunet-service-gns.c +++ b/src/gns/gnunet-service-gns.c @@ -805,6 +805,7 @@ handle_shorten (void *cls, const char *utf_in; char name[MAX_DNS_NAME_LENGTH]; char* nameptr = name; + uint16_t msg_size; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "SHORTEN"); msg_size = ntohs (message->size); @@ -930,6 +931,7 @@ handle_get_authority (void *cls, const char *utf_in; char name[MAX_DNS_NAME_LENGTH]; char* nameptr = name; + uint16_t msg_size; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "GET_AUTH"); msg_size = ntohs(message->size); @@ -1071,6 +1073,8 @@ handle_lookup(void *cls, struct GNUNET_CRYPTO_RsaPrivateKey *key; struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded *pkey; char* tmp_pkey; + uint16_t msg_size; + const struct GNUNET_GNS_ClientLookupMessage *sh_msg; GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "LOOKUP"); GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Received `%s' message\n", "LOOKUP"); @@ -1084,9 +1088,6 @@ handle_lookup(void *cls, sh_msg = (const struct GNUNET_GNS_ClientLookupMessage *) message; GNUNET_SERVER_notification_context_add (nc, client); - struct GNUNET_GNS_ClientLookupMessage *sh_msg = - (struct GNUNET_GNS_ClientLookupMessage *) message; - if (GNUNET_YES == ntohl (sh_msg->have_key)) { pkey = (struct GNUNET_CRYPTO_RsaPrivateKeyBinaryEncoded *) &sh_msg[1];