diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-08-03 03:34:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-08-03 03:34:43 +0000 |
commit | 6a841a89e8143678d8b0bb3a7506a55e69e91cf5 (patch) | |
tree | 5f1332f81b08861f309a3b01c3ba9e835be55dbc /usr.bin/ssh/authfd.c | |
parent | 4ca59a2a0eaecec3c6b29af7c2d68ac8732918db (diff) |
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk
makes the pain stop in one easy step
Diffstat (limited to 'usr.bin/ssh/authfd.c')
-rw-r--r-- | usr.bin/ssh/authfd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/ssh/authfd.c b/usr.bin/ssh/authfd.c index f8ee8051dac..c05c23c6d73 100644 --- a/usr.bin/ssh/authfd.c +++ b/usr.bin/ssh/authfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: authfd.c,v 1.79 2006/07/26 13:57:17 stevesk Exp $ */ +/* $OpenBSD: authfd.c,v 1.80 2006/08/03 03:34:41 deraadt Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -35,7 +35,6 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#include "includes.h" #include <sys/types.h> #include <sys/un.h> @@ -43,16 +42,17 @@ #include <openssl/evp.h> +#include <openssl/crypto.h> #include <fcntl.h> #include <stdlib.h> +#include <signal.h> #include <string.h> #include <unistd.h> +#include "xmalloc.h" #include "ssh.h" #include "rsa.h" #include "buffer.h" -#include "bufaux.h" -#include "xmalloc.h" #include "key.h" #include "authfd.h" #include "cipher.h" |