summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/sshconnect.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2015-01-20 23:14:00 +0000
committerderaadt <deraadt@openbsd.org>2015-01-20 23:14:00 +0000
commitace78debd18ce723905dd08f8e9e5976c31613bc (patch)
tree091cdb66a4aa1d8d8326da076b2e62c3c1dc5c72 /usr.bin/ssh/sshconnect.c
parentuse SUBDIR to recuse into unit tests; makes "make obj" actually (diff)
downloadwireguard-openbsd-ace78debd18ce723905dd08f8e9e5976c31613bc.tar.xz
wireguard-openbsd-ace78debd18ce723905dd08f8e9e5976c31613bc.zip
Reduce use of <sys/param.h> and transition to <limits.h> throughout.
ok djm markus
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r--usr.bin/ssh/sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c
index 725c01301c9..794e6286c5f 100644
--- a/usr.bin/ssh/sshconnect.c
+++ b/usr.bin/ssh/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.255 2015/01/19 20:20:20 markus Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.256 2015/01/20 23:14:00 deraadt Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -13,8 +13,8 @@
* called by a name other than "ssh" or "Secure Shell".
*/
+#include <sys/param.h> /* roundup */
#include <sys/types.h>
-#include <sys/param.h>
#include <sys/wait.h>
#include <sys/stat.h>
#include <sys/socket.h>