Make this compile cleanly. Switch to using rpcgen to generate

code that can be compiled on an ansi-C compiler, so that it puts the
xdrproc_t casts in.  This also implies a slight function name change.
This commit is contained in:
Peter Wemm 2003-10-26 05:51:51 +00:00
parent 03c1602aed
commit 88b30ea68c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=121554
2 changed files with 7 additions and 5 deletions

View File

@ -13,12 +13,12 @@ CLEANFILES= ${GENSRCS}
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
bootparam_prot_svc.c: ${RPCSRC}
rpcgen -m -o ${.TARGET} ${RPCSRC}
rpcgen -C -m -o ${.TARGET} ${RPCSRC}
bootparam_prot_xdr.c: ${RPCSRC}
rpcgen -c -o ${.TARGET} ${RPCSRC}
rpcgen -C -c -o ${.TARGET} ${RPCSRC}
bootparam_prot.h: ${RPCSRC}
rpcgen -h -o ${.TARGET} ${RPCSRC}
rpcgen -C -h -o ${.TARGET} ${RPCSRC}
.include <bsd.prog.mk>

View File

@ -42,8 +42,9 @@ int getthefile __P((char *, char *, char *, int));
int checkhost __P((char *, char *, int));
bp_whoami_res *
bootparamproc_whoami_1(whoami)
bootparamproc_whoami_1_svc(whoami, req)
bp_whoami_arg *whoami;
struct svc_req *req;
{
long haddr;
static bp_whoami_res res;
@ -107,8 +108,9 @@ bp_whoami_arg *whoami;
bp_getfile_res *
bootparamproc_getfile_1(getfile)
bootparamproc_getfile_1_svc(getfile, req)
bp_getfile_arg *getfile;
struct svc_req *req;
{
char *where, *index();
static bp_getfile_res res;