1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

(learn_status_cb, scd_genkey_cb): Fixed faulty use

of !spacep().
This commit is contained in:
Werner Koch 2003-10-25 14:22:08 +00:00
parent 21be16dba9
commit f936866734
2 changed files with 10 additions and 5 deletions

View file

@ -520,14 +520,14 @@ learn_status_cb (void *opaque, const char *line)
while (spacep (p))
p++;
parm->chv1_cached = atoi (p);
while (!spacep (p))
while (*p && !spacep (p))
p++;
while (spacep (p))
p++;
for (i=0; *p && i < 3; i++)
{
parm->chvmaxlen[i] = atoi (p);
while (!spacep (p))
while (*p && !spacep (p))
p++;
while (spacep (p))
p++;
@ -535,7 +535,7 @@ learn_status_cb (void *opaque, const char *line)
for (i=0; *p && i < 3; i++)
{
parm->chvretry[i] = atoi (p);
while (!spacep (p))
while (*p && !spacep (p))
p++;
while (spacep (p))
p++;
@ -546,7 +546,7 @@ learn_status_cb (void *opaque, const char *line)
else if (keywordlen == 7 && !memcmp (keyword, "KEY-FPR", keywordlen))
{
int no = atoi (line);
while (!spacep (line))
while (*line && !spacep (line))
line++;
while (spacep (line))
line++;
@ -674,7 +674,7 @@ scd_genkey_cb (void *opaque, const char *line)
gcry_mpi_t a;
const char *name = line;
while (!spacep (line))
while (*line && !spacep (line))
line++;
while (spacep (line))
line++;