mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Key generation and signing using the OpenPGP card does rudimentary work.
This commit is contained in:
parent
ed0d33f1d0
commit
f5db59fc21
50 changed files with 1535 additions and 449 deletions
|
@ -1,3 +1,7 @@
|
|||
2003-06-25 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* maperror.c (map_to_assuan_status): Directly map 0 to 0.
|
||||
|
||||
2003-06-17 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* gettime.c (scan_isodatestr,add_days_to_timestamp,strtimevalue)
|
||||
|
|
|
@ -129,6 +129,8 @@ map_to_assuan_status (int rc)
|
|||
gpg_err_code_t ec = gpg_err_code (rc);
|
||||
gpg_err_source_t es = gpg_err_source (rc);
|
||||
|
||||
if (!rc)
|
||||
return 0;
|
||||
if (!es)
|
||||
{
|
||||
es = GPG_ERR_SOURCE_USER_4; /* This should not happen, but we
|
||||
|
@ -149,3 +151,7 @@ map_to_assuan_status (int rc)
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue