summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/serverloop.c
diff options
context:
space:
mode:
authorstevesk <stevesk@openbsd.org>2006-07-26 02:35:16 +0000
committerstevesk <stevesk@openbsd.org>2006-07-26 02:35:16 +0000
commit2f43a2f848f436435722d0e9d58b630a06118ca7 (patch)
tree8cc5ed1ea362b21dd4b1f44e6cf689bc8d91550c /usr.bin/ssh/serverloop.c
parentCrank buffer sizes to the 1024 limit imposed by ttymalloc() (diff)
downloadwireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.tar.xz
wireguard-openbsd-2f43a2f848f436435722d0e9d58b630a06118ca7.zip
move #include <sys/param.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/serverloop.c')
-rw-r--r--usr.bin/ssh/serverloop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/serverloop.c b/usr.bin/ssh/serverloop.c
index 28bf8e9fe23..9d18d55df55 100644
--- a/usr.bin/ssh/serverloop.c
+++ b/usr.bin/ssh/serverloop.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: serverloop.c,v 1.142 2006/07/25 02:59:21 stevesk Exp $ */
+/* $OpenBSD: serverloop.c,v 1.143 2006/07/26 02:35:17 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -41,6 +41,7 @@
#include <sys/wait.h>
#include <sys/socket.h>
#include <sys/time.h>
+#include <sys/param.h>
#include <netinet/in.h>