2003-05-19 Marcus Brinkmann <marcus@g10code.de>
* verify.c (parse_new_sig): Fix ERRSIG case. Submitted by Benjamin Lee <benjaminlee@users.sf.net>.
This commit is contained in:
parent
d953c7815c
commit
c341e29590
@ -1,3 +1,8 @@
|
|||||||
|
2003-05-19 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
|
* verify.c (parse_new_sig): Fix ERRSIG case.
|
||||||
|
Submitted by Benjamin Lee <benjaminlee@users.sf.net>.
|
||||||
|
|
||||||
2003-05-18 Marcus Brinkmann <marcus@g10code.de>
|
2003-05-18 Marcus Brinkmann <marcus@g10code.de>
|
||||||
|
|
||||||
* gpgme.h: The following types are renamed. The old name is kept
|
* gpgme.h: The following types are renamed. The old name is kept
|
||||||
|
@ -189,7 +189,12 @@ parse_new_sig (op_data_t opd, gpgme_status_code_t code, char *args)
|
|||||||
/* The return code is the 6th argument, if it is 9, the
|
/* The return code is the 6th argument, if it is 9, the
|
||||||
problem is a missing key. */
|
problem is a missing key. */
|
||||||
while (end && i < 4)
|
while (end && i < 4)
|
||||||
|
{
|
||||||
end = strchr (end, ' ');
|
end = strchr (end, ' ');
|
||||||
|
if (end)
|
||||||
|
end++;
|
||||||
|
i++;
|
||||||
|
}
|
||||||
if (end && end[0] && (!end[1] || !end[1] == ' '))
|
if (end && end[0] && (!end[1] || !end[1] == ' '))
|
||||||
{
|
{
|
||||||
switch (end[0])
|
switch (end[0])
|
||||||
|
Loading…
Reference in New Issue
Block a user