summaryrefslogtreecommitdiff
path: root/src/pq
diff options
context:
space:
mode:
Diffstat (limited to 'src/pq')
-rw-r--r--src/pq/pq_query_helper.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c
index d284822c2..d80a3d99a 100644
--- a/src/pq/pq_query_helper.c
+++ b/src/pq/pq_query_helper.c
@@ -76,6 +76,18 @@ GNUNET_PQ_query_param_fixed_size (const void *ptr,
76 76
77 77
78/** 78/**
79 * Generate query parameter for a string.
80 *
81 * @param ptr pointer to the string query parameter to pass
82 */
83struct GNUNET_PQ_QueryParam
84GNUNET_PQ_query_param_string (const char *ptr)
85{
86 return GNUNET_PQ_query_param_fixed_size (ptr, strlen (ptr));
87}
88
89
90/**
79 * Function called to convert input argument into SQL parameters. 91 * Function called to convert input argument into SQL parameters.
80 * 92 *
81 * @param cls closure 93 * @param cls closure
@@ -254,7 +266,7 @@ GNUNET_PQ_query_param_uint64 (const uint64_t *x)
254 * @param scratch_length number of entries left in @a scratch 266 * @param scratch_length number of entries left in @a scratch
255 * @return -1 on error, number of offsets used in @a scratch otherwise 267 * @return -1 on error, number of offsets used in @a scratch otherwise
256 */ 268 */
257static int 269static int
258qconv_rsa_public_key (void *cls, 270qconv_rsa_public_key (void *cls,
259 const void *data, 271 const void *data,
260 size_t data_len, 272 size_t data_len,