summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/ssh/includes.h3
-rw-r--r--usr.bin/ssh/scp.c4
-rw-r--r--usr.bin/ssh/sftp-glob.c3
-rw-r--r--usr.bin/ssh/sftp-server.c4
4 files changed, 9 insertions, 5 deletions
diff --git a/usr.bin/ssh/includes.h b/usr.bin/ssh/includes.h
index 339fe1f4710..10064c7ce5c 100644
--- a/usr.bin/ssh/includes.h
+++ b/usr.bin/ssh/includes.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: includes.h,v 1.29 2006/02/08 14:38:18 stevesk Exp $ */
+/* $OpenBSD: includes.h,v 1.30 2006/02/08 23:51:24 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -46,7 +46,6 @@ static /**/const char *const rcsid[] = { (const char *)rcsid, "\100(#)" msg }
#include <grp.h>
#include <unistd.h>
#include <time.h>
-#include <dirent.h>
#include "version.h"
diff --git a/usr.bin/ssh/scp.c b/usr.bin/ssh/scp.c
index d913838e20e..43244780a1f 100644
--- a/usr.bin/ssh/scp.c
+++ b/usr.bin/ssh/scp.c
@@ -71,7 +71,9 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: scp.c,v 1.130 2006/01/31 10:35:43 djm Exp $");
+RCSID("$OpenBSD: scp.c,v 1.131 2006/02/08 23:51:24 stevesk Exp $");
+
+#include <dirent.h>
#include "xmalloc.h"
#include "atomicio.h"
diff --git a/usr.bin/ssh/sftp-glob.c b/usr.bin/ssh/sftp-glob.c
index 119094c0c1c..c3b540c77bd 100644
--- a/usr.bin/ssh/sftp-glob.c
+++ b/usr.bin/ssh/sftp-glob.c
@@ -15,8 +15,9 @@
*/
#include "includes.h"
-RCSID("$OpenBSD: sftp-glob.c,v 1.15 2004/02/17 07:17:29 djm Exp $");
+RCSID("$OpenBSD: sftp-glob.c,v 1.16 2006/02/08 23:51:24 stevesk Exp $");
+#include <dirent.h>
#include <glob.h>
#include "buffer.h"
diff --git a/usr.bin/ssh/sftp-server.c b/usr.bin/ssh/sftp-server.c
index 58b50af9ca5..7d8fdf26658 100644
--- a/usr.bin/ssh/sftp-server.c
+++ b/usr.bin/ssh/sftp-server.c
@@ -14,7 +14,9 @@
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "includes.h"
-RCSID("$OpenBSD: sftp-server.c,v 1.50 2006/01/02 01:20:31 djm Exp $");
+RCSID("$OpenBSD: sftp-server.c,v 1.51 2006/02/08 23:51:24 stevesk Exp $");
+
+#include <dirent.h>
#include "buffer.h"
#include "bufaux.h"