diff options
author | 2006-07-11 20:27:56 +0000 | |
---|---|---|
committer | 2006-07-11 20:27:56 +0000 | |
commit | 96542d960dbb4350c3e4c235cd64c04e578d6891 (patch) | |
tree | 66dcb3b25fd92077da47fd35e7dd71b6ba631deb /usr.bin/ssh/authfile.c | |
parent | cast asterisk field precision argument to int to remove warning; (diff) | |
download | wireguard-openbsd-96542d960dbb4350c3e4c235cd64c04e578d6891.tar.xz wireguard-openbsd-96542d960dbb4350c3e4c235cd64c04e578d6891.zip |
need <errno.h> here also (it's also included in <openssl/err.h>)
Diffstat (limited to 'usr.bin/ssh/authfile.c')
-rw-r--r-- | usr.bin/ssh/authfile.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/authfile.c b/usr.bin/ssh/authfile.c index 84abca5000f..0ab4ccebf50 100644 --- a/usr.bin/ssh/authfile.c +++ b/usr.bin/ssh/authfile.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfile.c,v 1.68 2006/07/09 15:15:10 stevesk Exp $ */ +/* $OpenBSD: authfile.c,v 1.69 2006/07/11 20:27:56 stevesk Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -45,6 +45,7 @@ #include <openssl/evp.h> #include <openssl/pem.h> +#include <errno.h> #include <fcntl.h> #include "cipher.h" |