summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/svc_auth_unix.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 15:58:16 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-08-01 15:58:16 +0000
commitb58315677d5cebc3898a558bd0bbf79f7a379cea (patch)
treea637c1d4ffac21a5efe86370e4c9e1b079ea3fa9 /cpukit/librpc/src/rpc/svc_auth_unix.c
parent2008-08-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b58315677d5cebc3898a558bd0bbf79f7a379cea.tar.bz2
Misc. ansifications.
Diffstat (limited to '')
-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);
}