From a4ef559d6cf734a86231ea3e189f76d961f1c3fb Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 16 Jun 2004 12:38:01 +0000 Subject: [PATCH] (osc_get_status): Fixed type in function name. Noted by Axel Thimm. Yes, I didn't tested it with OpenSC :-(. --- scd/ChangeLog | 5 +++++ scd/apdu.c | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/scd/ChangeLog b/scd/ChangeLog index 14dd9c3ff..e04575c75 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,8 @@ +2004-06-16 Werner Koch + + * apdu.c (osc_get_status): Fixed type in function name. Noted by + Axel Thimm. Yes, I didn't tested it with OpenSC :-(. + 2004-04-28 Werner Koch * app-openpgp.c (do_setattr): Sync FORCE_CHV1. diff --git a/scd/apdu.c b/scd/apdu.c index 42b337238..9742be760 100644 --- a/scd/apdu.c +++ b/scd/apdu.c @@ -1309,7 +1309,7 @@ reset_osc_reader (int slot) static int -ocsc_get_status (int slot, unsigned int *status) +osc_get_status (int slot, unsigned int *status) { return SW_HOST_NOT_SUPPORTED; }