summaryrefslogtreecommitdiffstats
path: root/usr.bin/ssh/ssh-rsa.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-rsa.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-rsa.c')
-rw-r--r--usr.bin/ssh/ssh-rsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-rsa.c b/usr.bin/ssh/ssh-rsa.c
index 236f77aac2a..aad8b66bc22 100644
--- a/usr.bin/ssh/ssh-rsa.c
+++ b/usr.bin/ssh/ssh-rsa.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-rsa.c,v 1.38 2006/07/22 20:48:23 stevesk Exp $ */
+/* $OpenBSD: ssh-rsa.c,v 1.39 2006/08/03 03:34:42 deraadt Exp $ */
/*
* Copyright (c) 2000, 2003 Markus Friedl <markus@openbsd.org>
*
@@ -14,7 +14,8 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "includes.h"
+
+#include <sys/types.h>
#include <openssl/evp.h>
#include <openssl/err.h>
@@ -24,7 +25,6 @@
#include "xmalloc.h"
#include "log.h"
#include "buffer.h"
-#include "bufaux.h"
#include "key.h"
#include "compat.h"
#include "ssh.h"