1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-03 22:56:33 +02:00

Print a note that the software has not been approved for qualified signatures.

This commit is contained in:
Werner Koch 2005-11-23 09:05:45 +00:00
parent 29a62827b4
commit b8795bb823
6 changed files with 127 additions and 9 deletions

View file

@ -446,13 +446,13 @@ gpgsm_sign (CTRL ctrl, CERTLIST signerlist,
goto leave;
}
if (*buffer)
err = gpgsm_qualified_consent (ctrl, cl->cert);
else
err = gpgsm_not_qualified_warning (ctrl, cl->cert);
if (err)
{
err = gpgsm_qualified_consent (ctrl, cl->cert);
if (err)
{
rc = err;
goto leave;
}
rc = err;
goto leave;
}
}