diff options
| author | Werner Koch <[email protected]> | 2004-12-19 13:38:24 +0000 |
|---|---|---|
| committer | Werner Koch <[email protected]> | 2004-12-19 13:38:24 +0000 |
| commit | e73100a940f7115e4be9f34dca160f622d869005 (patch) | |
| tree | a9d2248892a8b132e4a2fcafa5dce270ab2d48a8 /common | |
| parent | * configure.ac (AH_BOTTOM): Define EXEEXT_S. (diff) | |
| download | gnupg-e73100a940f7115e4be9f34dca160f622d869005.tar.gz gnupg-e73100a940f7115e4be9f34dca160f622d869005.zip | |
* maperror.c (map_assuan_err_with_source): Oops, args were swapped.
* w32-pth.c (pth_init): Enable debugging depending on env var.
Diffstat (limited to 'common')
| -rw-r--r-- | common/ChangeLog | 4 | ||||
| -rw-r--r-- | common/maperror.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/common/ChangeLog b/common/ChangeLog index 9b048ae49..336b3928a 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,3 +1,7 @@ +2004-12-19 Werner Koch <[email protected]> + + * maperror.c (map_assuan_err_with_source): Oops, args were swapped. + 2004-12-18 Werner Koch <[email protected]> * maperror.c (map_assuan_err): Renamed to .. diff --git a/common/maperror.c b/common/maperror.c index 91731468f..9efd64338 100644 --- a/common/maperror.c +++ b/common/maperror.c @@ -38,7 +38,7 @@ simple: All errors with a gpg_err_source of UNKNOWN are genuine Assuan codes all others are passed verbatim through. */ gpg_error_t -map_assuan_err_with_source (int err, int source) +map_assuan_err_with_source (int source, int err) { gpg_err_code_t ec; |
