diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-23 09:31:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-06-23 09:31:09 +0000 |
commit | 8ad10e9a8740e2bc613905387ce96d18893c30c5 (patch) | |
tree | d543446f66d4ff5050f3874f86771d126b2ddd0a /usr.sbin/rpc.bootparamd/bootparamd.c | |
parent | bf059e17b60556bb4e002859d30890aa916423f7 (diff) |
long vs int
Diffstat (limited to 'usr.sbin/rpc.bootparamd/bootparamd.c')
-rw-r--r-- | usr.sbin/rpc.bootparamd/bootparamd.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/rpc.bootparamd/bootparamd.c b/usr.sbin/rpc.bootparamd/bootparamd.c index 8a6fc90fa5f..abec2474ba5 100644 --- a/usr.sbin/rpc.bootparamd/bootparamd.c +++ b/usr.sbin/rpc.bootparamd/bootparamd.c @@ -6,7 +6,7 @@ * Various small changes by Theo de Raadt <deraadt@fsa.ca> * Parser rewritten (adding YP support) by Roland McGrath <roland@frob.com> * - * $Id: bootparamd.c,v 1.6 1997/01/17 07:14:26 millert Exp $ + * $Id: bootparamd.c,v 1.7 1997/06/23 09:31:08 deraadt Exp $ */ #include <sys/types.h> @@ -37,7 +37,8 @@ int _rpcsvcdirty = 0; int _rpcpmstart = 0; int debug = 0; int dolog = 0; -unsigned long route_addr, inet_addr(); +in_addr_t route_addr; +in_addr_t inet_addr(); struct sockaddr_in my_addr; extern char *__progname; char *bootpfile = _PATH_BOOTPARAMS; @@ -134,7 +135,7 @@ bootparamproc_whoami_1_svc(whoami, rqstp) bp_whoami_arg *whoami; struct svc_req *rqstp; { - long haddr; + in_addr_t haddr; static bp_whoami_res res; if (debug) |