Use prototype. While I'm there, add a pair of parenthesis to mark an if
statment's border. MFC after: 1 month
This commit is contained in:
parent
eff1a1bc13
commit
07de1c52db
@ -54,7 +54,7 @@
|
||||
static rpcb_stat_byvers inf;
|
||||
|
||||
void
|
||||
rpcbs_init()
|
||||
rpcbs_init(void)
|
||||
{
|
||||
|
||||
}
|
||||
|
@ -1076,7 +1076,7 @@ netbuffree(struct netbuf *ap)
|
||||
extern bool_t __svc_clean_idle(fd_set *, int, bool_t);
|
||||
|
||||
void
|
||||
my_svc_run()
|
||||
my_svc_run(void)
|
||||
{
|
||||
size_t nfds;
|
||||
struct pollfd pollfds[FD_SETSIZE];
|
||||
|
@ -178,12 +178,13 @@ main(int argc, char *argv[])
|
||||
init_transport(nconf);
|
||||
|
||||
while ((nconf = getnetconfig(nc_handle))) {
|
||||
if (nconf->nc_flag & NC_VISIBLE)
|
||||
if (nconf->nc_flag & NC_VISIBLE) {
|
||||
if (ipv6_only == 1 && strcmp(nconf->nc_protofmly,
|
||||
"inet") == 0) {
|
||||
/* DO NOTHING */
|
||||
} else
|
||||
init_transport(nconf);
|
||||
}
|
||||
}
|
||||
endnetconfig(nc_handle);
|
||||
|
||||
@ -766,7 +767,7 @@ terminate(int dummy __unused)
|
||||
}
|
||||
|
||||
void
|
||||
rpcbind_abort()
|
||||
rpcbind_abort(void)
|
||||
{
|
||||
#ifdef WARMSTART
|
||||
write_warmstart(); /* Dump yourself */
|
||||
|
@ -283,7 +283,7 @@ addrmerge(struct netbuf *caller, char *serv_uaddr, char *clnt_uaddr,
|
||||
}
|
||||
|
||||
void
|
||||
network_init()
|
||||
network_init(void)
|
||||
{
|
||||
#ifdef INET6
|
||||
struct ifaddrs *ifap, *ifp;
|
||||
|
@ -142,7 +142,7 @@ error: fprintf(stderr, "rpcbind: will start from scratch\n");
|
||||
}
|
||||
|
||||
void
|
||||
write_warmstart()
|
||||
write_warmstart(void)
|
||||
{
|
||||
(void) write_struct(RPCBFILE, (xdrproc_t)xdr_rpcblist_ptr, &list_rbl);
|
||||
#ifdef PORTMAP
|
||||
@ -152,7 +152,7 @@ write_warmstart()
|
||||
}
|
||||
|
||||
void
|
||||
read_warmstart()
|
||||
read_warmstart(void)
|
||||
{
|
||||
rpcblist_ptr tmp_rpcbl = NULL;
|
||||
#ifdef PORTMAP
|
||||
|
Loading…
Reference in New Issue
Block a user