diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | src/gpg-error.h | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,7 @@ 2003-06-05 Marcus Brinkmann <[email protected]> + * src/gpg-error.h (gpg_err_make_from_errno): Fix implementation. + * src/gpg-error.h (gpg_err_code_t): Add GPG_ERR_SIG_EXPIRED. (err-codes.h.in): Likewise. diff --git a/src/gpg-error.h b/src/gpg-error.h index bd90b87..c045e83 100644 --- a/src/gpg-error.h +++ b/src/gpg-error.h @@ -502,7 +502,7 @@ int gpg_err_code_to_errno (gpg_err_code_t code); static __inline__ gpg_error_t gpg_err_make_from_errno (gpg_err_source_t source, int err) { - return gpg_make_error (source, gpg_err_code_from_errno (err)); + return gpg_err_make (source, gpg_err_code_from_errno (err)); } |