summaryrefslogtreecommitdiffstats
path: root/ssh-keyscan.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2006-08-05 03:34:19 +0200
committerDamien Miller <djm@mindrot.org>2006-08-05 03:34:19 +0200
commite7a1e5cf630d635b253f0c0bada8c8886436297f (patch)
treebc82ccd5819445dbbfa7049e5f0ffa9882433062 /ssh-keyscan.c
parent - stevesk@cvs.openbsd.org 2006/07/26 02:35:17 (diff)
downloadopenssh-e7a1e5cf630d635b253f0c0bada8c8886436297f.tar.xz
openssh-e7a1e5cf630d635b253f0c0bada8c8886436297f.zip
- stevesk@cvs.openbsd.org 2006/07/26 13:57:17
[authfd.c authfile.c dh.c canohost.c channels.c clientloop.c compat.c] [hostfile.c kex.c log.c misc.c moduli.c monitor.c packet.c readpass.c] [scp.c servconf.c session.c sftp-server.c sftp.c ssh-add.c ssh-agent.c] [ssh-keygen.c ssh-keyscan.c ssh-keysign.c ssh.c sshconnect.c] [sshconnect1.c sshd.c xmalloc.c] move #include <stdlib.h> out of includes.h
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r--ssh-keyscan.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c
index e47460a8a..3d8cc7e4a 100644
--- a/ssh-keyscan.c
+++ b/ssh-keyscan.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ssh-keyscan.c,v 1.70 2006/07/25 02:59:21 stevesk Exp $ */
+/* $OpenBSD: ssh-keyscan.c,v 1.71 2006/07/26 13:57:17 stevesk Exp $ */
/*
* Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>.
*
@@ -19,8 +19,9 @@
#include <netdb.h>
#include <errno.h>
-#include <stdarg.h>
#include <setjmp.h>
+#include <stdarg.h>
+#include <stdlib.h>
#include <string.h>
#include <unistd.h>