diff options
Diffstat (limited to 'lib/libc/rpc/svc_auth.c')
-rw-r--r-- | lib/libc/rpc/svc_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc_auth.c b/lib/libc/rpc/svc_auth.c index d36ea7974e992..56d23b12f1541 100644 --- a/lib/libc/rpc/svc_auth.c +++ b/lib/libc/rpc/svc_auth.c @@ -71,7 +71,7 @@ static const char rcsid[] = "$FreeBSD$"; /* declarations to allow servers to specify new authentication flavors */ struct authsvc { int flavor; - enum auth_stat (*handler) __P((struct svc_req *, struct rpc_msg *)); + enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *); struct authsvc *next; }; static struct authsvc *Auths = NULL; @@ -171,7 +171,7 @@ _svcauth_null(rqst, msg) int svc_auth_reg(cred_flavor, handler) int cred_flavor; - enum auth_stat (*handler) __P((struct svc_req *, struct rpc_msg *)); + enum auth_stat (*handler)(struct svc_req *, struct rpc_msg *); { struct authsvc *asp; extern mutex_t authsvc_lock; |