summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/svc_auth_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/librpc/src/rpc/svc_auth_unix.c')
-rw-r--r--cpukit/librpc/src/rpc/svc_auth_unix.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/librpc/src/rpc/svc_auth_unix.c b/cpukit/librpc/src/rpc/svc_auth_unix.c
index 8b4e257a2c..09fb1f8c6b 100644
--- a/cpukit/librpc/src/rpc/svc_auth_unix.c
+++ b/cpukit/librpc/src/rpc/svc_auth_unix.c
@@ -52,9 +52,9 @@ static char *rcsid = "$FreeBSD: src/lib/libc/rpc/svc_auth_unix.c,v 1.8 1999/08/2
* Unix longhand authenticator
*/
enum auth_stat
-_svcauth_unix(rqst, msg)
- register struct svc_req *rqst;
- register struct rpc_msg *msg;
+_svcauth_unix(
+ struct svc_req *rqst,
+ struct rpc_msg *msg )
{
register enum auth_stat stat;
XDR xdrs;
@@ -140,9 +140,9 @@ done:
*/
/*ARGSUSED*/
enum auth_stat
-_svcauth_short(rqst, msg)
- struct svc_req *rqst;
- struct rpc_msg *msg;
+_svcauth_short(
+ struct svc_req *rqst,
+ struct rpc_msg *msg )
{
return (AUTH_REJECTEDCRED);
}