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 /clientloop.c | |
parent | 6ff3caddb687a89a5df715337917d0e140985b7f (diff) |
- 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 'clientloop.c')
-rw-r--r-- | clientloop.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clientloop.c b/clientloop.c index af5351b7d..dba3e96c3 100644 --- a/clientloop.c +++ b/clientloop.c | |||
@@ -59,7 +59,7 @@ | |||
59 | */ | 59 | */ |
60 | 60 | ||
61 | #include "includes.h" | 61 | #include "includes.h" |
62 | RCSID("$OpenBSD: clientloop.c,v 1.154 2006/02/20 17:19:54 stevesk Exp $"); | 62 | RCSID("$OpenBSD: clientloop.c,v 1.155 2006/02/22 00:04:44 stevesk Exp $"); |
63 | 63 | ||
64 | #include <sys/types.h> | 64 | #include <sys/types.h> |
65 | #ifdef HAVE_SYS_STAT_H | 65 | #ifdef HAVE_SYS_STAT_H |
@@ -67,6 +67,7 @@ RCSID("$OpenBSD: clientloop.c,v 1.154 2006/02/20 17:19:54 stevesk Exp $"); | |||
67 | #endif | 67 | #endif |
68 | #include <sys/ioctl.h> | 68 | #include <sys/ioctl.h> |
69 | 69 | ||
70 | #include <ctype.h> | ||
70 | #include <paths.h> | 71 | #include <paths.h> |
71 | #include <signal.h> | 72 | #include <signal.h> |
72 | #include <termios.h> | 73 | #include <termios.h> |