summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/misc.c
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2006-07-06 16:03:54 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2006-07-06 16:03:54 +0000
commit3e5dda7b859c760637a02baab3070275c99c874c (patch)
treea28ad01bcb3bcb2aa13a26994539ab9f9f57c852 /usr.bin/ssh/misc.c
parent233c4b284aafd55220503b11f052d8e1e17b94dd (diff)
move #include <pwd.h> out of includes.h; ok markus@
Diffstat (limited to 'usr.bin/ssh/misc.c')
-rw-r--r--usr.bin/ssh/misc.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/ssh/misc.c b/usr.bin/ssh/misc.c
index b8ea874ce95..cd9b5904c24 100644
--- a/usr.bin/ssh/misc.c
+++ b/usr.bin/ssh/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.53 2006/07/05 02:42:09 stevesk Exp $ */
+/* $OpenBSD: misc.c,v 1.54 2006/07/06 16:03:53 stevesk Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2005,2006 Damien Miller. All rights reserved.
@@ -27,6 +27,7 @@
#include "includes.h"
#include <sys/ioctl.h>
+#include <sys/types.h>
#include <sys/socket.h>
#include <net/if.h>
@@ -34,6 +35,7 @@
#include <netinet/tcp.h>
#include <paths.h>
+#include <pwd.h>
#include "misc.h"
#include "log.h"