summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/clientloop.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/clientloop.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/clientloop.c')
-rw-r--r--usr.bin/ssh/clientloop.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/usr.bin/ssh/clientloop.c b/usr.bin/ssh/clientloop.c
index 9ca8180dcae..8c891058f72 100644
--- a/usr.bin/ssh/clientloop.c
+++ b/usr.bin/ssh/clientloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: clientloop.c,v 1.174 2006/08/01 23:22:47 stevesk Exp $ */
+/* $OpenBSD: clientloop.c,v 1.175 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
@@ -59,10 +59,9 @@
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "includes.h"
-#include <sys/ioctl.h>
#include <sys/types.h>
+#include <sys/ioctl.h>
#include <sys/stat.h>
#include <sys/socket.h>
#include <sys/time.h>
@@ -76,20 +75,20 @@
#include <stdlib.h>
#include <string.h>
#include <termios.h>
+#include <pwd.h>
#include <unistd.h>
+#include "xmalloc.h"
#include "ssh.h"
#include "ssh1.h"
#include "ssh2.h"
-#include "xmalloc.h"
#include "packet.h"
#include "buffer.h"
#include "compat.h"
#include "channels.h"
#include "dispatch.h"
-#include "buffer.h"
-#include "bufaux.h"
#include "key.h"
+#include "cipher.h"
#include "kex.h"
#include "log.h"
#include "readconf.h"