diff options
Diffstat (limited to 'scard.c')
-rw-r--r-- | scard.c | 9 |
1 files changed, 8 insertions, 1 deletions
@@ -24,7 +24,7 @@ | |||
24 | 24 | ||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | #if defined(SMARTCARD) && defined(USE_SECTOK) | 26 | #if defined(SMARTCARD) && defined(USE_SECTOK) |
27 | RCSID("$OpenBSD: scard.c,v 1.27 2003/04/08 20:21:29 itojun Exp $"); | 27 | RCSID("$OpenBSD: scard.c,v 1.28 2003/06/12 19:12:02 markus Exp $"); |
28 | 28 | ||
29 | #include <openssl/evp.h> | 29 | #include <openssl/evp.h> |
30 | #include <sectok.h> | 30 | #include <sectok.h> |
@@ -554,4 +554,11 @@ done: | |||
554 | sectok_close(fd); | 554 | sectok_close(fd); |
555 | return (status); | 555 | return (status); |
556 | } | 556 | } |
557 | |||
558 | char * | ||
559 | sc_get_key_label(Key *key) | ||
560 | { | ||
561 | return xstrdup("smartcard key"); | ||
562 | } | ||
563 | |||
557 | #endif /* SMARTCARD && USE_SECTOK */ | 564 | #endif /* SMARTCARD && USE_SECTOK */ |