diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-25 02:01:35 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-25 02:01:35 +0000 |
commit | 6bee03faa904b13448684dbcf35eeb6d7e28c53a (patch) | |
tree | 20d5a3df25c3a6c5e4b90a78e43e3a2d2bceaf7f /usr.bin/ssh/scard.c | |
parent | bc3d8ecdbc0c76bb463004cb95076d09b6537aec (diff) |
need #include <string.h>
Diffstat (limited to 'usr.bin/ssh/scard.c')
-rw-r--r-- | usr.bin/ssh/scard.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/scard.c b/usr.bin/ssh/scard.c index c9b604b7c82..0f79b4da0d6 100644 --- a/usr.bin/ssh/scard.c +++ b/usr.bin/ssh/scard.c @@ -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 @@ #include "includes.h" #include <openssl/evp.h> + #include <sectok.h> +#include <string.h> #include "key.h" #include "log.h" |