mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
* maperror.c (map_to_assuan_status): Map EOF to No_Data_Available.
This commit is contained in:
parent
f60b29f2ee
commit
d905375003
2 changed files with 7 additions and 0 deletions
|
@ -196,6 +196,9 @@ map_to_assuan_status (int rc)
|
|||
{
|
||||
switch (rc)
|
||||
{
|
||||
case -1:
|
||||
rc = ASSUAN_No_Data_Available;
|
||||
break;
|
||||
case 0: break;
|
||||
case GNUPG_Bad_CA_Certificate:
|
||||
case GNUPG_Bad_Certificate:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue