diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 23:36:38 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-03 23:36:38 +0000 |
commit | 855dca36fe7aa348dc56996385fbbb77fbf3e83d (patch) | |
tree | acb8204659fd3f784cd2fa9248e6ab09861af47b /libc/inet/rpc/svc_auth.c | |
parent | 86450311ebd0010553252d6d9efadb208dd085cb (diff) |
Rename newly created __libc_x (reserved for libpthread overwrites) w/ x_internal, do not use cascading aliases
Diffstat (limited to 'libc/inet/rpc/svc_auth.c')
-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 80c4f7955..bcead0608 100644 --- a/libc/inet/rpc/svc_auth.c +++ b/libc/inet/rpc/svc_auth.c @@ -102,7 +102,7 @@ svcauthsw[] = * invalid. */ enum auth_stat attribute_hidden -__libc__authenticate (register struct svc_req *rqst, struct rpc_msg *msg) +_authenticate_internal (register struct svc_req *rqst, struct rpc_msg *msg) { register int cred_flavor; @@ -115,7 +115,7 @@ __libc__authenticate (register struct svc_req *rqst, struct rpc_msg *msg) return AUTH_REJECTEDCRED; } -strong_alias(__libc__authenticate,_authenticate) +strong_alias(_authenticate_internal,_authenticate) static enum auth_stat _svcauth_null (struct svc_req *rqst, struct rpc_msg *msg) |