aboutsummaryrefslogtreecommitdiffstats
path: root/scd
diff options
context:
space:
mode:
Diffstat (limited to 'scd')
-rw-r--r--scd/ChangeLog6
-rw-r--r--scd/sc-investigate.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog
index 2ed774f21..6a8668b45 100644
--- a/scd/ChangeLog
+++ b/scd/ChangeLog
@@ -1,3 +1,9 @@
+2003-06-04 Werner Koch <[email protected]>
+
+ * card.c (map_sc_err): Renamed gpg_make_err to gpg_err_make.
+
+ Renamed error codes from INVALID to INV and removed _ERROR suffixes.
+
2003-06-03 Werner Koch <[email protected]>
Changed all error codes in all files to the new libgpg-error scheme.
diff --git a/scd/sc-investigate.c b/scd/sc-investigate.c
index 0de0c95a3..e6b4c4afb 100644
--- a/scd/sc-investigate.c
+++ b/scd/sc-investigate.c
@@ -145,11 +145,11 @@ main (int argc, char **argv )
rc = atr_dump (slot, stdout);
if (rc)
- log_error ("can't dump ATR: %s\n", gnupg_strerror (rc));
+ log_error ("can't dump ATR: %s\n", gpg_strerror (rc));
rc = app_select_openpgp (slot);
if (rc)
- log_error ("selecting openpgp failed: %s\n", gnupg_strerror (rc));
+ log_error ("selecting openpgp failed: %s\n", gpg_strerror (rc));
else
log_info ("openpgp application selected\n");