diff options
author | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-02-08 19:30:54 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@cvs.openbsd.org> | 2001-02-08 19:30:54 +0000 |
commit | f2ea9e80ef58d577847e45e4e77a4d1882f2ff45 (patch) | |
tree | 10e7eba9cac215431ac277af39ec8ca62e46e1e4 /usr.bin/ssh/canohost.c | |
parent | 06da7da4c39450d6cf61f63bce993a0b6fb46e81 (diff) |
sync with netbsd tree changes.
- more strict prototypes, include necessary headers
- use paths.h/pathnames.h decls
- size_t typecase to int -> u_long
Diffstat (limited to 'usr.bin/ssh/canohost.c')
-rw-r--r-- | usr.bin/ssh/canohost.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/canohost.c b/usr.bin/ssh/canohost.c index b61a2059e26..56aeb38cc39 100644 --- a/usr.bin/ssh/canohost.c +++ b/usr.bin/ssh/canohost.c @@ -12,11 +12,12 @@ */ #include "includes.h" -RCSID("$OpenBSD: canohost.c,v 1.20 2001/02/03 10:08:37 markus Exp $"); +RCSID("$OpenBSD: canohost.c,v 1.21 2001/02/08 19:30:51 itojun Exp $"); #include "packet.h" #include "xmalloc.h" #include "log.h" +#include "canohost.h" void check_ip_options(int socket, char *ipaddr); |