summaryrefslogtreecommitdiff
path: root/sexp2dsa.c
diff options
context:
space:
mode:
Diffstat (limited to 'sexp2dsa.c')
-rw-r--r--sexp2dsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sexp2dsa.c b/sexp2dsa.c
index 74b34705..94885993 100644
--- a/sexp2dsa.c
+++ b/sexp2dsa.c
@@ -61,7 +61,7 @@ dsa_keypair_from_sexp_alist(struct dsa_params *params,
unsigned q_bits,
struct sexp_iterator *i)
{
- static const uint8_t * const names[5]
+ static const char * const names[5]
= { "p", "q", "g", "y", "x" };
struct sexp_iterator values[5];
unsigned nvalues = priv ? 5 : 4;
@@ -131,7 +131,7 @@ dsa_signature_from_sexp(struct dsa_signature *rs,
struct sexp_iterator *i,
unsigned q_bits)
{
- static const uint8_t * const names[2] = { "r", "s" };
+ static const char * const names[2] = { "r", "s" };
struct sexp_iterator values[2];
if (!sexp_iterator_assoc(i, 2, names, values))