diff options
author | Damien Miller <djm@mindrot.org> | 2006-03-15 11:53:45 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2006-03-15 11:53:45 +1100 |
commit | c7b06369a846822b0da77b969d4ed72ea8ee38d4 (patch) | |
tree | 5542e1aae33335ef5ba9926ceecb3c9475378c72 /ssh.c | |
parent | 6ff3caddb687a89a5df715337917d0e140985b7f (diff) | |
download | openssh-git-c7b06369a846822b0da77b969d4ed72ea8ee38d4.tar.gz |
- stevesk@cvs.openbsd.org 2006/02/22 00:04:45
[canohost.c clientloop.c includes.h match.c readconf.c scp.c ssh.c]
[sshconnect.c]
move #include <ctype.h> out of includes.h; ok djm@
Diffstat (limited to 'ssh.c')
-rw-r--r-- | ssh.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh.c,v 1.264 2006/02/20 17:19:54 stevesk Exp $"); +RCSID("$OpenBSD: ssh.c,v 1.265 2006/02/22 00:04:45 stevesk Exp $"); #include <sys/types.h> #ifdef HAVE_SYS_STAT_H @@ -50,6 +50,7 @@ RCSID("$OpenBSD: ssh.c,v 1.264 2006/02/20 17:19:54 stevesk Exp $"); #include <sys/ioctl.h> #include <sys/un.h> +#include <ctype.h> #include <paths.h> #include <signal.h> |