diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:27:57 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-07-11 20:27:57 +0000 |
commit | 51ae263843d507ea58dfb16cf6553678610f2997 (patch) | |
tree | 17ef770bbc54e96c3ec00cb3e0507b1526825a4b /usr.bin | |
parent | 6c2ae068a39931c92e23486a52878fe6b171f63f (diff) |
need <errno.h> here also (it's also included in <openssl/err.h>)
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/ssh/authfile.c | 3 | ||||
-rw-r--r-- | usr.bin/ssh/ssh.c | 3 |
2 files changed, 4 insertions, 2 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" diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index 4b1c8b4ee2b..282a5f13a2a 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.284 2006/07/11 20:16:43 stevesk Exp $ */ +/* $OpenBSD: ssh.c,v 1.285 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 @@ -50,6 +50,7 @@ #include <sys/stat.h> #include <ctype.h> +#include <errno.h> #include <fcntl.h> #include <paths.h> #include <pwd.h> |