aboutsummaryrefslogtreecommitdiffstats
path: root/g10
diff options
context:
space:
mode:
Diffstat (limited to 'g10')
-rw-r--r--g10/ChangeLog6
-rw-r--r--g10/card-util.c6
2 files changed, 11 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 0e0e715fc..563c71eee 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,7 @@
+2003-10-01 Werner Koch <[email protected]>
+
+ * card-util.c: Tweaked to use this source also under 1.3.
+
2003-09-30 Werner Koch <[email protected]>
* keylist.c (print_card_serialno): New.
@@ -407,7 +411,7 @@
* card-util.c (card_status): New.
* call-agent.c (learn_status_cb): Parse more information.
- * keylist.c (print_pubkey_info): Add FP arg for optinal printing
+ * keylist.c (print_pubkey_info): Add FP arg for optional printing
to a stream. Changed all callers.
2003-07-23 Werner Koch <[email protected]>
diff --git a/g10/card-util.c b/g10/card-util.c
index 1028cd373..70518e9ce 100644
--- a/g10/card-util.c
+++ b/g10/card-util.c
@@ -25,14 +25,20 @@
#include <errno.h>
#include <assert.h>
+#if GNUPG_MAJOR_VERSION != 1
#include "gpg.h"
+#endif
#include "util.h"
#include "i18n.h"
#include "ttyio.h"
#include "status.h"
#include "options.h"
#include "main.h"
+#if GNUPG_MAJOR_VERSION == 1
+#include "cardglue.h"
+#else
#include "call-agent.h"
+#endif
#define CONTROL_D ('D' - 'A' + 1)