summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--scard.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index c81e10dcc..a84425102 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,6 +29,9 @@
29 - stevesk@cvs.openbsd.org 2001/07/23 18:21:46 29 - stevesk@cvs.openbsd.org 2001/07/23 18:21:46
30 [xmalloc.c] 30 [xmalloc.c]
31 no zero size xstrdup() error; ok markus@ 31 no zero size xstrdup() error; ok markus@
32 - markus@cvs.openbsd.org 2001/07/25 11:59:35
33 [scard.c]
34 typo in comment
32 35
3320010803 3620010803
34 - (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on 37 - (djm) Fix interrupted read in entropy gatherer. Spotted by markus@ on
@@ -6139,4 +6142,4 @@
6139 - Wrote replacements for strlcpy and mkdtemp 6142 - Wrote replacements for strlcpy and mkdtemp
6140 - Released 1.0pre1 6143 - Released 1.0pre1
6141 6144
6142$Id: ChangeLog,v 1.1434 2001/08/06 21:03:23 mouring Exp $ 6145$Id: ChangeLog,v 1.1435 2001/08/06 21:05:05 mouring Exp $
diff --git a/scard.c b/scard.c
index 721e021fb..25776d2e6 100644
--- a/scard.c
+++ b/scard.c
@@ -24,7 +24,7 @@
24 24
25#ifdef SMARTCARD 25#ifdef SMARTCARD
26#include "includes.h" 26#include "includes.h"
27RCSID("$OpenBSD: scard.c,v 1.5 2001/07/04 23:13:09 markus Exp $"); 27RCSID("$OpenBSD: scard.c,v 1.6 2001/07/25 11:59:35 markus Exp $");
28 28
29#include <openssl/engine.h> 29#include <openssl/engine.h>
30#include <sectok.h> 30#include <sectok.h>
@@ -93,7 +93,7 @@ sc_enable_applet(void)
93 sc_close(); 93 sc_close();
94 return -1; 94 return -1;
95 } 95 }
96 /* send appled id */ 96 /* send applet id */
97 for (i = 0; i < sizeof(aid); i++) 97 for (i = 0; i < sizeof(aid); i++)
98 aid[i] = 0x77; 98 aid[i] = 0x77;
99 aid_len = 5; 99 aid_len = 5;