summaryrefslogtreecommitdiff
path: root/usr.bin/ssh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2009-06-22 05:39:29 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2009-06-22 05:39:29 +0000
commit8e9f0e3e7f0deba751a2fbafb8b9276e17b629f4 (patch)
tree0ae5a27d45d97382a973c358c2ff1c19777b3b09 /usr.bin/ssh
parentf8e93f3d495bc05de60a1248b181df0aecb9cdc3 (diff)
alphabetize includes; reduces diff vs portable and style(9). ok stevesk djm
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r--usr.bin/ssh/auth2.c4
-rw-r--r--usr.bin/ssh/gss-genr.c4
-rw-r--r--usr.bin/ssh/monitor_mm.c4
-rw-r--r--usr.bin/ssh/monitor_wrap.c10
-rw-r--r--usr.bin/ssh/sftp-client.c4
-rw-r--r--usr.bin/ssh/ssh-keygen.c4
6 files changed, 15 insertions, 15 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c
index 71a56a65179..c8d2f4efa2d 100644
--- a/usr.bin/ssh/auth2.c
+++ b/usr.bin/ssh/auth2.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: auth2.c,v 1.120 2008/11/04 08:22:12 djm Exp $ */
+/* $OpenBSD: auth2.c,v 1.121 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
*
@@ -30,8 +30,8 @@
#include <fcntl.h>
#include <pwd.h>
-#include <string.h>
#include <stdarg.h>
+#include <string.h>
#include <unistd.h>
#include "atomicio.h"
diff --git a/usr.bin/ssh/gss-genr.c b/usr.bin/ssh/gss-genr.c
index a9b7d08293a..a13f634547f 100644
--- a/usr.bin/ssh/gss-genr.c
+++ b/usr.bin/ssh/gss-genr.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: gss-genr.c,v 1.19 2007/06/12 11:56:15 dtucker Exp $ */
+/* $OpenBSD: gss-genr.c,v 1.20 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Copyright (c) 2001-2007 Simon Wilkinson. All rights reserved.
@@ -28,8 +28,8 @@
#include <sys/param.h>
-#include <string.h>
#include <stdarg.h>
+#include <string.h>
#include "xmalloc.h"
#include "buffer.h"
diff --git a/usr.bin/ssh/monitor_mm.c b/usr.bin/ssh/monitor_mm.c
index 58ca194f002..183eeaeea09 100644
--- a/usr.bin/ssh/monitor_mm.c
+++ b/usr.bin/ssh/monitor_mm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor_mm.c,v 1.15 2006/08/03 03:34:42 deraadt Exp $ */
+/* $OpenBSD: monitor_mm.c,v 1.16 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* All rights reserved.
@@ -30,8 +30,8 @@
#include <sys/param.h>
#include <errno.h>
-#include <string.h>
#include <stdarg.h>
+#include <string.h>
#include "xmalloc.h"
#include "ssh.h"
diff --git a/usr.bin/ssh/monitor_wrap.c b/usr.bin/ssh/monitor_wrap.c
index 1c364ee2e7f..eb7bcc4d2f3 100644
--- a/usr.bin/ssh/monitor_wrap.c
+++ b/usr.bin/ssh/monitor_wrap.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: monitor_wrap.c,v 1.67 2009/05/28 16:50:16 andreas Exp $ */
+/* $OpenBSD: monitor_wrap.c,v 1.68 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Copyright 2002 Niels Provos <provos@citi.umich.edu>
* Copyright 2002 Markus Friedl <markus@openbsd.org>
@@ -29,10 +29,6 @@
#include <sys/uio.h>
#include <sys/queue.h>
-#include <openssl/bn.h>
-#include <openssl/dh.h>
-#include <openssl/evp.h>
-
#include <errno.h>
#include <pwd.h>
#include <signal.h>
@@ -40,6 +36,10 @@
#include <string.h>
#include <unistd.h>
+#include <openssl/bn.h>
+#include <openssl/dh.h>
+#include <openssl/evp.h>
+
#include "xmalloc.h"
#include "ssh.h"
#include "dh.h"
diff --git a/usr.bin/ssh/sftp-client.c b/usr.bin/ssh/sftp-client.c
index 4d8bc943247..8de03014916 100644
--- a/usr.bin/ssh/sftp-client.c
+++ b/usr.bin/ssh/sftp-client.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sftp-client.c,v 1.86 2008/06/26 06:10:09 djm Exp $ */
+/* $OpenBSD: sftp-client.c,v 1.87 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Copyright (c) 2001-2004 Damien Miller <djm@openbsd.org>
*
@@ -31,10 +31,10 @@
#include <errno.h>
#include <fcntl.h>
#include <signal.h>
+#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
-#include <stdarg.h>
#include "xmalloc.h"
#include "buffer.h"
diff --git a/usr.bin/ssh/ssh-keygen.c b/usr.bin/ssh/ssh-keygen.c
index e542204b66b..8d44f39c219 100644
--- a/usr.bin/ssh/ssh-keygen.c
+++ b/usr.bin/ssh/ssh-keygen.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keygen.c,v 1.173 2009/02/21 19:32:04 tobias Exp $ */
+/* $OpenBSD: ssh-keygen.c,v 1.174 2009/06/22 05:39:28 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1994 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -13,8 +13,8 @@
*/
#include <sys/types.h>
-#include <sys/stat.h>
#include <sys/socket.h>
+#include <sys/stat.h>
#include <sys/param.h>
#include <openssl/evp.h>