summaryrefslogtreecommitdiffstats
path: root/sshd.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 /sshd.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 'sshd.c')
-rw-r--r--sshd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index 82a37ef46..9fa179933 100644
--- a/sshd.c
+++ b/sshd.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshd.c,v 1.340 2006/07/25 02:59:21 stevesk Exp $ */
+/* $OpenBSD: sshd.c,v 1.341 2006/07/26 13:57:17 stevesk Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -64,6 +64,7 @@
#include <grp.h>
#include <pwd.h>
#include <signal.h>
+#include <stdlib.h>
#include <string.h>
#include <openssl/dh.h>