Fix compile warnings.

(Restore changes clobbered by merge of FreeBSD changes. Hi christos!)
This commit is contained in:
ginsbach 2017-08-17 00:08:10 +00:00
parent 062d2d48d3
commit b683e9a94a
1 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: warmstart.c,v 1.7 2017/08/16 23:38:16 ginsbach Exp $ */ /* $NetBSD: warmstart.c,v 1.8 2017/08/17 00:08:10 ginsbach Exp $ */
/* $FreeBSD: head/usr.sbin/rpcbind/warmstart.c 258564 2013-11-25 16:44:02Z hrs $*/ /* $FreeBSD: head/usr.sbin/rpcbind/warmstart.c 258564 2013-11-25 16:44:02Z hrs $*/
/*- /*-
@ -136,9 +136,9 @@ error: warnx("Will start from scratch");
void void
write_warmstart(void) write_warmstart(void)
{ {
(void)write_struct(RPCBFILE, xdr_rpcblist_ptr, &list_rbl); (void)write_struct(RPCBFILE, (xdrproc_t) xdr_rpcblist_ptr, &list_rbl);
#ifdef PORTMAP #ifdef PORTMAP
(void)write_struct(PMAPFILE, xdr_pmaplist_ptr, &list_pml); (void)write_struct(PMAPFILE, (xdrproc_t) xdr_pmaplist_ptr, &list_pml);
#endif #endif
} }
@ -152,11 +152,11 @@ read_warmstart(void)
#endif #endif
int ok1, ok2 = TRUE; int ok1, ok2 = TRUE;
ok1 = read_struct(RPCBFILE, xdr_rpcblist_ptr, &tmp_rpcbl); ok1 = read_struct(RPCBFILE, (xdrproc_t) xdr_rpcblist_ptr, &tmp_rpcbl);
if (ok1 == FALSE) if (ok1 == FALSE)
return; return;
#ifdef PORTMAP #ifdef PORTMAP
ok2 = read_struct(PMAPFILE, xdr_pmaplist_ptr, &tmp_pmapl); ok2 = read_struct(PMAPFILE, (xdrproc_t) xdr_pmaplist_ptr, &tmp_pmapl);
#endif #endif
if (ok2 == FALSE) { if (ok2 == FALSE) {
xdr_free((xdrproc_t) xdr_rpcblist_ptr, (char *)&tmp_rpcbl); xdr_free((xdrproc_t) xdr_rpcblist_ptr, (char *)&tmp_rpcbl);