rpcbind: Remove useless return at the end of void function

Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/656
This commit is contained in:
Elyes Haouas 2023-03-02 07:59:07 -07:00 committed by Warner Losh
parent c7846853d3
commit fce4b0c51d
2 changed files with 0 additions and 4 deletions

View File

@ -245,7 +245,6 @@ rpcb_service_4(struct svc_req *rqstp, SVCXPRT *transp)
}
}
}
return;
}
/*

View File

@ -1225,7 +1225,6 @@ send_svcsyserr(SVCXPRT *xprt, struct finfo *fi)
xprt_set_caller(xprt, fi);
svcerr_systemerr(xprt);
}
return;
}
static void
@ -1318,7 +1317,6 @@ handle_reply(int fd, SVCXPRT *xprt)
#endif
} else
(void) free_slot_by_xid(reply_msg.rm_xid);
return;
}
static void
@ -1344,7 +1342,6 @@ find_versions(rpcprog_t prog, char *netid, rpcvers_t *lowvp, rpcvers_t *highvp)
}
*lowvp = lowv;
*highvp = highv;
return;
}
/*