summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--scard.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 1d718224c..ae91a5b7a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -4,6 +4,9 @@
4 [sshconnect.c] 4 [sshconnect.c]
5 disable tunnel forwarding when no strict host key checking 5 disable tunnel forwarding when no strict host key checking
6 and key changed; ok djm@ markus@ dtucker@ 6 and key changed; ok djm@ markus@ dtucker@
7 - stevesk@cvs.openbsd.org 2006/07/25 02:01:34
8 [scard.c]
9 need #include <string.h>
7 10
820060804 1120060804
9 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent 12 - (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@@ -5074,4 +5077,4 @@
5074 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 5077 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
5075 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 5078 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
5076 5079
5077$Id: ChangeLog,v 1.4442 2006/08/04 23:11:13 djm Exp $ 5080$Id: ChangeLog,v 1.4443 2006/08/04 23:33:15 djm Exp $
diff --git a/scard.c b/scard.c
index 0a6ec816d..237a4e438 100644
--- a/scard.c
+++ b/scard.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: scard.c,v 1.32 2006/03/25 13:17:02 djm Exp $ */ 1/* $OpenBSD: scard.c,v 1.33 2006/07/25 02:01:34 stevesk Exp $ */
2/* 2/*
3 * Copyright (c) 2001 Markus Friedl. All rights reserved. 3 * Copyright (c) 2001 Markus Friedl. All rights reserved.
4 * 4 *
@@ -27,7 +27,9 @@
27#if defined(SMARTCARD) && defined(USE_SECTOK) 27#if defined(SMARTCARD) && defined(USE_SECTOK)
28 28
29#include <openssl/evp.h> 29#include <openssl/evp.h>
30
30#include <sectok.h> 31#include <sectok.h>
32#include <string.h>
31 33
32#include "key.h" 34#include "key.h"
33#include "log.h" 35#include "log.h"