summaryrefslogtreecommitdiff
path: root/src/pq/pq_query_helper.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
committerChristian Grothoff <christian@grothoff.org>2016-03-21 13:41:12 +0000
commit1733de7305720882b8745e82b51b6ff47c10099e (patch)
treedf9199b0e8670b089ead17186b191b80629bda8f /src/pq/pq_query_helper.c
parent60de5f48cbfc3868570284e91415ca7e06c390e1 (diff)
downloadgnunet-1733de7305720882b8745e82b51b6ff47c10099e.tar.gz
gnunet-1733de7305720882b8745e82b51b6ff47c10099e.zip
fixing symbol naming and coding convention issues
Diffstat (limited to 'src/pq/pq_query_helper.c')
-rw-r--r--src/pq/pq_query_helper.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c
index 13c71446c..d284822c2 100644
--- a/src/pq/pq_query_helper.c
+++ b/src/pq/pq_query_helper.c
@@ -265,7 +265,7 @@ qconv_rsa_public_key (void *cls,
265 void *scratch[], 265 void *scratch[],
266 unsigned int scratch_length) 266 unsigned int scratch_length)
267{ 267{
268 const struct GNUNET_CRYPTO_rsa_PublicKey *rsa = data; 268 const struct GNUNET_CRYPTO_RsaPublicKey *rsa = data;
269 char *buf; 269 char *buf;
270 size_t buf_size; 270 size_t buf_size;
271 271
@@ -290,7 +290,7 @@ qconv_rsa_public_key (void *cls,
290 * @return array entry for the query parameters to use 290 * @return array entry for the query parameters to use
291 */ 291 */
292struct GNUNET_PQ_QueryParam 292struct GNUNET_PQ_QueryParam
293GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_rsa_PublicKey *x) 293GNUNET_PQ_query_param_rsa_public_key (const struct GNUNET_CRYPTO_RsaPublicKey *x)
294{ 294{
295 struct GNUNET_PQ_QueryParam res = 295 struct GNUNET_PQ_QueryParam res =
296 { &qconv_rsa_public_key, NULL, (x), 0, 1 }; 296 { &qconv_rsa_public_key, NULL, (x), 0, 1 };
@@ -323,7 +323,7 @@ qconv_rsa_signature (void *cls,
323 void *scratch[], 323 void *scratch[],
324 unsigned int scratch_length) 324 unsigned int scratch_length)
325{ 325{
326 const struct GNUNET_CRYPTO_rsa_Signature *sig = data; 326 const struct GNUNET_CRYPTO_RsaSignature *sig = data;
327 char *buf; 327 char *buf;
328 size_t buf_size; 328 size_t buf_size;
329 329
@@ -348,7 +348,7 @@ qconv_rsa_signature (void *cls,
348 * @return array entry for the query parameters to use 348 * @return array entry for the query parameters to use
349 */ 349 */
350struct GNUNET_PQ_QueryParam 350struct GNUNET_PQ_QueryParam
351GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_rsa_Signature *x) 351GNUNET_PQ_query_param_rsa_signature (const struct GNUNET_CRYPTO_RsaSignature *x)
352{ 352{
353 struct GNUNET_PQ_QueryParam res = 353 struct GNUNET_PQ_QueryParam res =
354 { &qconv_rsa_signature, NULL, (x), 0, 1 }; 354 { &qconv_rsa_signature, NULL, (x), 0, 1 };