aboutsummaryrefslogtreecommitdiffstats
path: root/dirmngr/loadswdb.c
diff options
context:
space:
mode:
authorNIIBE Yutaka <[email protected]>2020-09-18 01:20:23 +0000
committerNIIBE Yutaka <[email protected]>2020-09-18 01:20:23 +0000
commitdfdcf14738976c6b236f4fa1c3b68af351024b3c (patch)
tree40a28138343e29b0c03c97653e22223e8de2f116 /dirmngr/loadswdb.c
parentscd: Clear PIN cache when changing key attributes. (diff)
downloadgnupg-dfdcf14738976c6b236f4fa1c3b68af351024b3c.tar.gz
gnupg-dfdcf14738976c6b236f4fa1c3b68af351024b3c.zip
common,agent,dirmngr,g10,tools: Fix split_fields API.
* common/stringhelp.h (split_fields): Use const * for the strings in the ARRAY. (split_fields_colon): Likewise. * common/stringhelp.c (split_fields, split_fields_colon): Fix the implementation. * agent/call-scd.c, agent/command.c: Follow the change. * common/t-stringhelp.c, dirmngr/loadswdb.c: Likewise. * g10/call-agent.c, tools/card-call-scd.c: Likewise. * tools/card-yubikey.c, tools/gpg-card.c: Likewise. * tools/gpg-card.h, tools/gpg-wks-client.c: Likewise. * tools/gpgconf-comp.c, tools/gpgconf.c: Likewise. * tools/wks-util.c: Likewise. -- The strings in the ARRAY don't need to be released by caller, as those are references. It's easier to follow the code when it's explicitly const *. Signed-off-by: NIIBE Yutaka <[email protected]>
Diffstat (limited to 'dirmngr/loadswdb.c')
-rw-r--r--dirmngr/loadswdb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/dirmngr/loadswdb.c b/dirmngr/loadswdb.c
index fb883722a..e9ced8af2 100644
--- a/dirmngr/loadswdb.c
+++ b/dirmngr/loadswdb.c
@@ -43,7 +43,7 @@ time_of_saved_swdb (const char *fname, time_t *r_filedate, time_t *r_verified)
size_t length_of_line = 0;
size_t maxlen;
ssize_t len;
- char *fields[2];
+ const char *fields[2];
gnupg_isotime_t isot;
time_t filedate = (time_t)(-1);
time_t verified = (time_t)(-1);
@@ -198,7 +198,7 @@ verify_status_cb (void *opaque, const char *keyword, char *args)
/* We care only about the first valid signature. */
if (!strcmp (keyword, "VALIDSIG") && !parm->anyvalid)
{
- char *fields[3];
+ const char *fields[3];
parm->anyvalid = 1;
if (split_fields (args, fields, DIM (fields)) >= 3)