summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
committerderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
commitbd9502d503c60bf5de0fd1cfbab7397f3696ad80 (patch)
tree3ea70e621f5f3cbc4c5dbba594d8fc41316978fa /usr.bin/ssh/serverloop.c
parentregen (diff)
downloadwireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.tar.xz
wireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.zip
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/serverloop.c')
-rw-r--r--usr.bin/ssh/serverloop.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index 9d18d55df55..125a279250f 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: serverloop.c,v 1.143 2006/07/26 02:35:17 stevesk Exp $ */
+/* $OpenBSD: serverloop.c,v 1.144 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -35,8 +35,6 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "includes.h"
-
#include <sys/types.h>
#include <sys/wait.h>
#include <sys/socket.h>
@@ -52,6 +50,7 @@
#include <string.h>
#include <termios.h>
#include <unistd.h>
+#include <stdarg.h>
#include "xmalloc.h"
#include "packet.h"
@@ -64,13 +63,16 @@
#include "compat.h"
#include "ssh1.h"
#include "ssh2.h"
+#include "key.h"
+#include "cipher.h"
+#include "kex.h"
+#include "hostfile.h"
#include "auth.h"
#include "session.h"
#include "dispatch.h"
#include "auth-options.h"
#include "serverloop.h"
#include "misc.h"
-#include "kex.h"
extern ServerOptions options;