summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/servconf.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-07-08 21:47:13 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-07-08 21:47:13 +0000
commit751e64a6f437a770bfa4c7c19a978f5aa956cec1 (patch)
tree9f597dc77753b537c4645caef63253530dee71d6 /usr.bin/ssh/servconf.c
parent3df254212e0fda4fda8f3e7b5cf2b3050a267990 (diff)
move #include <sys/socket.h> out of includes.h
Diffstat (limited to 'usr.bin/ssh/servconf.c')
-rw-r--r--usr.bin/ssh/servconf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index 03edd92f643..1b6611c580c 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/servconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: servconf.c,v 1.151 2006/07/06 10:47:05 djm Exp $ */
+/* $OpenBSD: servconf.c,v 1.152 2006/07/08 21:47:12 stevesk Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@@ -12,6 +12,9 @@
#include "includes.h"
+#include <sys/types.h>
+#include <sys/socket.h>
+
#include "ssh.h"
#include "log.h"
#include "servconf.h"