diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2011-03-18 20:31:54 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2012-06-15 14:00:27 +0200 |
commit | 9449f915569e404c30a1f7af9bb06cdc2f9dce1f (patch) | |
tree | 98e51f949b0926683657248850bbb676a75451aa /libc/inet/rpc | |
parent | dddf830fe184debfa99b9f0e53b4e68ad90c9d91 (diff) |
svc_auth.c: use same prototypes as in svc_authux.c
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/inet/rpc')
-rw-r--r-- | libc/inet/rpc/svc_auth.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/inet/rpc/svc_auth.c b/libc/inet/rpc/svc_auth.c index ae02a44ba..c902b46d2 100644 --- a/libc/inet/rpc/svc_auth.c +++ b/libc/inet/rpc/svc_auth.c @@ -58,9 +58,9 @@ static char sccsid[] = "@(#)svc_auth.c 1.19 87/08/11 Copyr 1984 Sun Micro"; static enum auth_stat _svcauth_null (struct svc_req *, struct rpc_msg *); /* no authentication */ -extern enum auth_stat _svcauth_unix (struct svc_req *, struct rpc_msg *); +extern enum auth_stat _svcauth_unix (struct svc_req *, struct rpc_msg *) attribute_hidden; /* unix style (uid, gids) */ -extern enum auth_stat _svcauth_short (struct svc_req *, struct rpc_msg *); +extern enum auth_stat _svcauth_short (struct svc_req *, struct rpc_msg *) attribute_hidden; /* short hand unix style */ #ifdef CONFIG_AUTH_DES extern enum auth_stat _svcauth_des (struct svc_req *, struct rpc_msg *); |