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:
parent
c750dce075
commit
637b655086
@ -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 */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user