diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:13:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-27 09:13:42 +0000 |
commit | d623e76f1b1805f85580d1861709b18e683e6138 (patch) | |
tree | bab06c97620ea7dbf7713f8f54d5fe6cea449a77 | |
parent | 766709000aca35c4851cdb9b84e78db52ed8290d (diff) |
kill off simple unused warnings
-rw-r--r-- | libc/inet/rpc/auth_none.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libc/inet/rpc/auth_none.c b/libc/inet/rpc/auth_none.c index b2e23924c..cb30c40a7 100644 --- a/libc/inet/rpc/auth_none.c +++ b/libc/inet/rpc/auth_none.c @@ -105,7 +105,7 @@ strong_alias(__authnone_create,authnone_create) /*ARGSUSED */ static bool_t -authnone_marshal (AUTH *client, XDR *xdrs) +authnone_marshal (AUTH *client attribute_unused, XDR *xdrs) { struct authnone_private_s *ap; @@ -116,23 +116,23 @@ authnone_marshal (AUTH *client, XDR *xdrs) } static void -authnone_verf (AUTH *auth) +authnone_verf (AUTH *auth attribute_unused) { } static bool_t -authnone_validate (AUTH *auth, struct opaque_auth *oa) +authnone_validate (AUTH *auth attribute_unused, struct opaque_auth *oa attribute_unused) { return TRUE; } static bool_t -authnone_refresh (AUTH *auth) +authnone_refresh (AUTH *auth attribute_unused) { return FALSE; } static void -authnone_destroy (AUTH *auth) +authnone_destroy (AUTH *auth attribute_unused) { } |