[scard.c]
     need #include <string.h>
This commit is contained in:
Damien Miller 2006-08-05 09:33:15 +10:00
Родитель 437edb9e66
Коммит 7c6e4b059c
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -4,6 +4,9 @@
[sshconnect.c]
disable tunnel forwarding when no strict host key checking
and key changed; ok djm@ markus@ dtucker@
- stevesk@cvs.openbsd.org 2006/07/25 02:01:34
[scard.c]
need #include <string.h>
20060804
- (dtucker) [configure.ac] The "crippled AES" test does not work on recent
@ -5074,4 +5077,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
$Id: ChangeLog,v 1.4442 2006/08/04 23:11:13 djm Exp $
$Id: ChangeLog,v 1.4443 2006/08/04 23:33:15 djm Exp $

Просмотреть файл

@ -1,4 +1,4 @@
/* $OpenBSD: scard.c,v 1.32 2006/03/25 13:17:02 djm Exp $ */
/* $OpenBSD: scard.c,v 1.33 2006/07/25 02:01:34 stevesk Exp $ */
/*
* Copyright (c) 2001 Markus Friedl. All rights reserved.
*
@ -27,7 +27,9 @@
#if defined(SMARTCARD) && defined(USE_SECTOK)
#include <openssl/evp.h>
#include <sectok.h>
#include <string.h>
#include "key.h"
#include "log.h"