aboutsummaryrefslogtreecommitdiffstats
path: root/sm
diff options
context:
space:
mode:
Diffstat (limited to 'sm')
-rw-r--r--sm/ChangeLog8
-rw-r--r--sm/call-dirmngr.c2
-rw-r--r--sm/certdump.c4
-rw-r--r--sm/keylist.c26
-rw-r--r--sm/server.c2
5 files changed, 31 insertions, 11 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog
index f1eb49c2c..cefa77e32 100644
--- a/sm/ChangeLog
+++ b/sm/ChangeLog
@@ -1,3 +1,11 @@
+2005-07-20 Werner Koch <[email protected]>
+
+ * keylist.c (email_kludge): Reworked.
+
+ * certdump.c (gpgsm_print_serial, gpgsm_dump_serial): Cast printf
+ arg to unsigned.
+ * call-dirmngr.c (gpgsm_dirmngr_run_command): Ditto
+
2005-07-19 Werner Koch <[email protected]>
* fingerprint.c (gpgsm_get_certid): Cast printf arg to unsigned.
diff --git a/sm/call-dirmngr.c b/sm/call-dirmngr.c
index 847e78490..ead117dfd 100644
--- a/sm/call-dirmngr.c
+++ b/sm/call-dirmngr.c
@@ -827,7 +827,7 @@ gpgsm_dirmngr_run_command (CTRL ctrl, const char *command,
*p++ = '+';
else if (!isprint (*s) || *s == '+')
{
- sprintf (p, "%%%02X", *s);
+ sprintf (p, "%%%02X", *(const unsigned char *)s);
p += 3;
}
else
diff --git a/sm/certdump.c b/sm/certdump.c
index 98f019c4a..aae60e020 100644
--- a/sm/certdump.c
+++ b/sm/certdump.c
@@ -70,7 +70,7 @@ gpgsm_print_serial (FILE *fp, ksba_const_sexp_t sn)
else
{
for (p++; n; n--, p++)
- fprintf (fp, "%02X", *p);
+ fprintf (fp, "%02X", *(const unsigned char*)p);
}
}
}
@@ -98,7 +98,7 @@ gpgsm_dump_serial (ksba_const_sexp_t sn)
else
{
for (p++; n; n--, p++)
- log_printf ("%02X", *p);
+ log_printf ("%02X", *(const unsigned char *)p);
}
}
}
diff --git a/sm/keylist.c b/sm/keylist.c
index a0ac73fb3..8a4eb3cdb 100644
--- a/sm/keylist.c
+++ b/sm/keylist.c
@@ -251,30 +251,42 @@ print_time (gnupg_isotime_t t, FILE *fp)
}
-/* return an allocated string with the email address extracted from a
+/* Return an allocated string with the email address extracted from a
DN */
static char *
email_kludge (const char *name)
{
- const char *p;
+ const char *p, *string;
unsigned char *buf;
int n;
- if (strncmp (name, "1.2.840.113549.1.9.1=#", 22))
- return NULL;
+ string = name;
+ for (;;)
+ {
+ p = strstr (string, "1.2.840.113549.1.9.1=#");
+ if (!p)
+ return NULL;
+ if (p == name || (p > string+1 && p[-1] == ',' && p[-2] != '\\'))
+ {
+ name = p + 22;
+ break;
+ }
+ string = p + 22;
+ }
+
+
/* This looks pretty much like an email address in the subject's DN
we use this to add an additional user ID entry. This way,
openSSL generated keys get a nicer and usable listing */
- name += 22;
for (n=0, p=name; hexdigitp (p) && hexdigitp (p+1); p +=2, n++)
;
- if (*p != '#' || !n)
+ if (!n)
return NULL;
buf = xtrymalloc (n+3);
if (!buf)
return NULL; /* oops, out of core */
*buf = '<';
- for (n=1, p=name; *p != '#'; p +=2, n++)
+ for (n=1, p=name; hexdigitp (p); p +=2, n++)
buf[n] = xtoi_2 (p);
buf[n++] = '>';
buf[n] = 0;
diff --git a/sm/server.c b/sm/server.c
index b3816d3d9..87a06ee4e 100644
--- a/sm/server.c
+++ b/sm/server.c
@@ -1109,7 +1109,7 @@ write_status_text_and_buffer ( int no, const char *string,
if (s != buffer)
fwrite (buffer, s-buffer, 1, statusfp );
if ( esc ) {
- fprintf (statusfp, "%%%02X", *(const byte*)s );
+ fprintf (statusfp, "%%%02X", *(const unsigned char*)s );
s++; n--;
}
buffer = s;