aboutsummaryrefslogtreecommitdiff
path: root/src/credential
diff options
context:
space:
mode:
authorSchanzenbach, Martin <mschanzenbach@posteo.de>2016-12-02 13:50:43 +0100
committerSchanzenbach, Martin <mschanzenbach@posteo.de>2016-12-02 13:50:43 +0100
commit45c17975732ef486a7ef4c64fb7161c89275bf05 (patch)
treedc0d7be0b1832159bbaf7b628ddb07d12b3e68ad /src/credential
parent3664423a917b4cf3773445b40b5ad8f5dd8e35e8 (diff)
downloadgnunet-45c17975732ef486a7ef4c64fb7161c89275bf05.tar.gz
gnunet-45c17975732ef486a7ef4c64fb7161c89275bf05.zip
- change record data name
Diffstat (limited to 'src/credential')
-rw-r--r--src/credential/plugin_gnsrecord_credential.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/credential/plugin_gnsrecord_credential.c b/src/credential/plugin_gnsrecord_credential.c
index cc645468d..480dc4c62 100644
--- a/src/credential/plugin_gnsrecord_credential.c
+++ b/src/credential/plugin_gnsrecord_credential.c
@@ -53,12 +53,12 @@ credential_value_to_string (void *cls,
53 { 53 {
54 case GNUNET_GNSRECORD_TYPE_CREDENTIAL: 54 case GNUNET_GNSRECORD_TYPE_CREDENTIAL:
55 { 55 {
56 struct GNUNET_CREDENTIAL_AttributeRecordData cred; 56 struct GNUNET_CREDENTIAL_CredentialRecordData cred;
57 char *cred_str; 57 char *cred_str;
58 char *subject_pkey; 58 char *subject_pkey;
59 char *issuer_pkey; 59 char *issuer_pkey;
60 uint32_t cf; // Credential flags 60 uint32_t cf; // Credential flags
61 if (data_size < sizeof (struct GNUNET_CREDENTIAL_AttributeRecordData)) 61 if (data_size < sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData))
62 return NULL; /* malformed */ 62 return NULL; /* malformed */
63 memcpy (&cred, 63 memcpy (&cred,
64 data, 64 data,
@@ -111,7 +111,7 @@ credential_string_to_value (void *cls,
111 { 111 {
112 case GNUNET_GNSRECORD_TYPE_CREDENTIAL: 112 case GNUNET_GNSRECORD_TYPE_CREDENTIAL:
113 { 113 {
114 struct GNUNET_CREDENTIAL_AttributeRecordData *cred; 114 struct GNUNET_CREDENTIAL_CredentialRecordData *cred;
115 unsigned int cf; // credential flags 115 unsigned int cf; // credential flags
116 116
117 size_t enclen = (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)) * 8; 117 size_t enclen = (sizeof (struct GNUNET_CRYPTO_EcdsaPublicKey)) * 8;
@@ -134,7 +134,7 @@ credential_string_to_value (void *cls,
134 s); 134 s);
135 return GNUNET_SYSERR; 135 return GNUNET_SYSERR;
136 } 136 }
137 *data_size = sizeof (struct GNUNET_CREDENTIAL_AttributeRecordData) + strlen (name) + 1; 137 *data_size = sizeof (struct GNUNET_CREDENTIAL_CredentialRecordData) + strlen (name) + 1;
138 *data = cred = GNUNET_malloc (*data_size); 138 *data = cred = GNUNET_malloc (*data_size);
139 GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_pkey, 139 GNUNET_CRYPTO_ecdsa_public_key_from_string (subject_pkey,
140 strlen (subject_pkey), 140 strlen (subject_pkey),