diff options
author | djm <djm> | 2006-03-15 00:52:09 +0000 |
---|---|---|
committer | djm <djm> | 2006-03-15 00:52:09 +0000 |
commit | 83c10c72e1ca92be911fc3e762d984c686d0192c (patch) | |
tree | cb706f49679fa02f5c38b423ded73ef2b7b1ba43 /serverloop.c | |
parent | c275efac87b589c000bccf99538ac58a5ffc4399 (diff) | |
download | openssh-83c10c72e1ca92be911fc3e762d984c686d0192c.tar.gz |
oops, this commit is really:
- stevesk@cvs.openbsd.org 2006/02/20 17:02:44
[clientloop.c includes.h monitor.c progressmeter.c scp.c]
[serverloop.c session.c sftp.c ssh-agent.c ssh.c sshd.c]
move #include <signal.h> out of includes.h; ok markus@
the previous was:
- stevesk@cvs.openbsd.org 2006/02/20 17:19:54
[auth-rhosts.c auth-rsa.c auth.c auth2-none.c auth2-pubkey.c]
[authfile.c clientloop.c includes.h readconf.c scp.c session.c]
[sftp-client.c sftp-common.c sftp-common.h sftp-glob.c]
[sftp-server.c sftp.c ssh-add.c ssh-keygen.c ssh.c sshconnect.c]
[sshconnect2.c sshd.c sshpty.c]
move #include <sys/stat.h> out of includes.h; ok markus@
Diffstat (limited to 'serverloop.c')
-rw-r--r-- | serverloop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/serverloop.c b/serverloop.c index 11dcaf70..0a1bbf1a 100644 --- a/serverloop.c +++ b/serverloop.c @@ -35,11 +35,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: serverloop.c,v 1.126 2006/02/10 01:44:26 stevesk Exp $"); +RCSID("$OpenBSD: serverloop.c,v 1.127 2006/02/20 17:02:44 stevesk Exp $"); #include <sys/types.h> #include <sys/wait.h> +#include <signal.h> #include <termios.h> #include "xmalloc.h" |