summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-keysign.c
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
committerderaadt <deraadt@openbsd.org>2006-08-03 03:34:41 +0000
commitbd9502d503c60bf5de0fd1cfbab7397f3696ad80 (patch)
tree3ea70e621f5f3cbc4c5dbba594d8fc41316978fa /usr.bin/ssh/ssh-keysign.c
parentregen (diff)
downloadwireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.tar.xz
wireguard-openbsd-bd9502d503c60bf5de0fd1cfbab7397f3696ad80.zip
almost entirely get rid of the culture of ".h files that include .h files"
ok djm, sort of ok stevesk makes the pain stop in one easy step
Diffstat (limited to 'usr.bin/ssh/ssh-keysign.c')
-rw-r--r--usr.bin/ssh/ssh-keysign.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.bin/ssh/ssh-keysign.c b/usr.bin/ssh/ssh-keysign.c
index f53df681b31..69f6cbf710c 100644
--- a/usr.bin/ssh/ssh-keysign.c
+++ b/usr.bin/ssh/ssh-keysign.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keysign.c,v 1.28 2006/07/26 13:57:17 stevesk Exp $ */
+/* $OpenBSD: ssh-keysign.c,v 1.29 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Copyright (c) 2002 Markus Friedl. All rights reserved.
*
@@ -22,7 +22,6 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include "includes.h"
#include <sys/types.h>
@@ -37,14 +36,13 @@
#include <string.h>
#include <unistd.h>
+#include "xmalloc.h"
#include "log.h"
#include "key.h"
#include "ssh.h"
#include "ssh2.h"
#include "misc.h"
-#include "xmalloc.h"
#include "buffer.h"
-#include "bufaux.h"
#include "authfile.h"
#include "msg.h"
#include "canohost.h"