aboutsummaryrefslogtreecommitdiff
path: root/src/gns/gnunet-gns-proxy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gns/gnunet-gns-proxy.c')
-rw-r--r--src/gns/gnunet-gns-proxy.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gns/gnunet-gns-proxy.c b/src/gns/gnunet-gns-proxy.c
index a67f7356e..276ea70b0 100644
--- a/src/gns/gnunet-gns-proxy.c
+++ b/src/gns/gnunet-gns-proxy.c
@@ -623,12 +623,12 @@ static struct Socks5Request *s5r_tail;
623/** 623/**
624 * The users local GNS master zone 624 * The users local GNS master zone
625 */ 625 */
626static struct GNUNET_CRYPTO_EccPublicSignKey local_gns_zone; 626static struct GNUNET_CRYPTO_EcdsaPublicKey local_gns_zone;
627 627
628/** 628/**
629 * The users local shorten zone 629 * The users local shorten zone
630 */ 630 */
631static struct GNUNET_CRYPTO_EccPrivateKey local_shorten_zone; 631static struct GNUNET_CRYPTO_EcdsaPrivateKey local_shorten_zone;
632 632
633/** 633/**
634 * Is shortening enabled? 634 * Is shortening enabled?
@@ -2864,7 +2864,7 @@ main (int argc, char *const *argv)
2864 &run, NULL)) ? 0 : 1; 2864 &run, NULL)) ? 0 : 1;
2865 MHD_destroy_response (curl_failure_response); 2865 MHD_destroy_response (curl_failure_response);
2866 GNUNET_free_non_null ((char *) argv); 2866 GNUNET_free_non_null ((char *) argv);
2867 GNUNET_CRYPTO_ecc_key_clear (&local_shorten_zone); 2867 GNUNET_CRYPTO_ecdsa_key_clear (&local_shorten_zone);
2868 return ret; 2868 return ret;
2869} 2869}
2870 2870