Fixed type mismatch caused by bogus prototypes. rpcgen for some reason

doesn't generate any prototypes for the functions to be registered.
This commit is contained in:
bde 1997-04-15 16:18:57 +00:00
parent c750dce075
commit 637b655086

View File

@ -38,8 +38,8 @@
#include "lockd.h"
extern void nlm_prog_1 __P((struct svc_req, register SVCXPRT));
extern void nlm_prog_3 __P((struct svc_req, register SVCXPRT));
void nlm_prog_1 __P((struct svc_req *, SVCXPRT *));
void nlm_prog_3 __P((struct svc_req *, SVCXPRT *));
int debug_level = 0; /* Zero means no debugging syslog() calls */