aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2013-09-13 18:59:45 +0000
committerChristian Grothoff <christian@grothoff.org>2013-09-13 18:59:45 +0000
commitae202e69cb8d882992cac472a2fd86da0d0b18bf (patch)
tree8885707fcb13a432378860980e8ea0293f26d162 /src
parentd5d073a8b040165be91a59cbdf6344bb698a760d (diff)
downloadgnunet-ae202e69cb8d882992cac472a2fd86da0d0b18bf.tar.gz
gnunet-ae202e69cb8d882992cac472a2fd86da0d0b18bf.zip
-more rename issues
Diffstat (limited to 'src')
-rw-r--r--src/hello/hello.c2
-rw-r--r--src/identity/gnunet-identity.c2
-rw-r--r--src/namestore/namestore_api_common.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/hello/hello.c b/src/hello/hello.c
index 780c1f127..b43723f08 100644
--- a/src/hello/hello.c
+++ b/src/hello/hello.c
@@ -873,7 +873,7 @@ GNUNET_HELLO_compose_uri (const struct GNUNET_HELLO_Message *hello,
873 struct GNUNET_HELLO_ComposeUriContext ctx; 873 struct GNUNET_HELLO_ComposeUriContext ctx;
874 ctx.plugins_find = plugins_find; 874 ctx.plugins_find = plugins_find;
875 875
876 char *pkey = GNUNET_CRYPTO_ecc_public_key_to_string (&(hello->publicKey)); 876 char *pkey = GNUNET_CRYPTO_ecc_public_sign_key_to_string (&(hello->publicKey));
877 877
878 GNUNET_asprintf (&(ctx.uri), 878 GNUNET_asprintf (&(ctx.uri),
879 "%s%s", 879 "%s%s",
diff --git a/src/identity/gnunet-identity.c b/src/identity/gnunet-identity.c
index 66dc1909e..8dac356e4 100644
--- a/src/identity/gnunet-identity.c
+++ b/src/identity/gnunet-identity.c
@@ -267,7 +267,7 @@ print_ego (void *cls,
267 if (NULL == ego) 267 if (NULL == ego)
268 return; 268 return;
269 GNUNET_IDENTITY_ego_get_public_key (ego, &pk); 269 GNUNET_IDENTITY_ego_get_public_key (ego, &pk);
270 s = GNUNET_CRYPTO_ecc_public_key_to_string (&pk); 270 s = GNUNET_CRYPTO_ecc_public_sign_key_to_string (&pk);
271 if ( (monitor) || (NULL != identifier) ) 271 if ( (monitor) || (NULL != identifier) )
272 fprintf (stdout, "%s - %s\n", identifier, s); 272 fprintf (stdout, "%s - %s\n", identifier, s);
273 GNUNET_free (s); 273 GNUNET_free (s);
diff --git a/src/namestore/namestore_api_common.c b/src/namestore/namestore_api_common.c
index f752b18c3..99af01a72 100644
--- a/src/namestore/namestore_api_common.c
+++ b/src/namestore/namestore_api_common.c
@@ -582,7 +582,7 @@ GNUNET_NAMESTORE_value_to_string (uint32_t type,
582 case GNUNET_NAMESTORE_TYPE_PKEY: 582 case GNUNET_NAMESTORE_TYPE_PKEY:
583 if (data_size != sizeof (struct GNUNET_CRYPTO_EccPublicSignKey)) 583 if (data_size != sizeof (struct GNUNET_CRYPTO_EccPublicSignKey))
584 return NULL; 584 return NULL;
585 return GNUNET_CRYPTO_ecc_public_key_to_string (data); 585 return GNUNET_CRYPTO_ecc_public_sign_key_to_string (data);
586 case GNUNET_NAMESTORE_TYPE_PSEU: 586 case GNUNET_NAMESTORE_TYPE_PSEU:
587 return GNUNET_strndup (data, data_size); 587 return GNUNET_strndup (data, data_size);
588 case GNUNET_NAMESTORE_TYPE_LEHO: 588 case GNUNET_NAMESTORE_TYPE_LEHO:
@@ -970,7 +970,7 @@ GNUNET_NAMESTORE_pkey_to_zkey (const struct GNUNET_CRYPTO_EccPublicSignKey *pkey
970 static char ret[128]; 970 static char ret[128];
971 char *pkeys; 971 char *pkeys;
972 972
973 pkeys = GNUNET_CRYPTO_ecc_public_key_to_string (pkey); 973 pkeys = GNUNET_CRYPTO_ecc_public_sign_key_to_string (pkey);
974 GNUNET_snprintf (ret, 974 GNUNET_snprintf (ret,
975 sizeof (ret), 975 sizeof (ret),
976 "%s.zkey", 976 "%s.zkey",