summaryrefslogtreecommitdiffstats
path: root/cpukit/librpc/src/rpc/auth_unix.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-14 19:09:06 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2006-09-14 19:09:06 +0000
commit90d2585a07eac08511ea92bf333930971c8e6374 (patch)
tree4cc2a1ff828ae6dcc6d07d4426db969cf30edbf1 /cpukit/librpc/src/rpc/auth_unix.c
parent*** empty log message *** (diff)
downloadrtems-90d2585a07eac08511ea92bf333930971c8e6374.tar.bz2
2006-09-14 Joel Sherrill <joel@OARcorp.com>
* libnetworking/net/route.c, librpc/src/rpc/auth_none.c, librpc/src/rpc/auth_unix.c, librpc/src/rpc/authunix_prot.c, librpc/src/rpc/rpc_callmsg.c, librpc/src/rpc/rpc_prot.c, librpc/src/rpc/rtems_portmapper.c: Removed warnings.
Diffstat (limited to 'cpukit/librpc/src/rpc/auth_unix.c')
-rw-r--r--cpukit/librpc/src/rpc/auth_unix.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpukit/librpc/src/rpc/auth_unix.c b/cpukit/librpc/src/rpc/auth_unix.c
index 279822942a..8703a70ac3 100644
--- a/cpukit/librpc/src/rpc/auth_unix.c
+++ b/cpukit/librpc/src/rpc/auth_unix.c
@@ -60,9 +60,9 @@ static char *rcsid = "$FreeBSD: src/lib/libc/rpc/auth_unix.c,v 1.12 1999/12/29 0
* Unix authenticator operations vector
*/
static void authunix_nextverf(AUTH*);
-static bool_t authunix_marshal(AUTH*, XDR*);
-static bool_t authunix_validate(AUTH*, struct opaque_auth *);
-static bool_t authunix_refresh(AUTH*);
+static int authunix_marshal(AUTH*, XDR*);
+static int authunix_validate(AUTH*, struct opaque_auth *);
+static int authunix_refresh(AUTH*);
static void authunix_destroy(AUTH*);
static struct auth_ops auth_unix_ops = {
@@ -223,7 +223,7 @@ authunix_nextverf(AUTH *auth)
/* no action necessary */
}
-static bool_t
+static int
authunix_marshal(AUTH *auth, XDR *xdrs)
{
struct audata *au = AUTH_PRIVATE(auth);
@@ -231,7 +231,7 @@ authunix_marshal(AUTH *auth, XDR *xdrs)
return (XDR_PUTBYTES(xdrs, au->au_marshed, au->au_mpos));
}
-static bool_t
+static int
authunix_validate( AUTH *auth, struct opaque_auth *verf )
{
register struct audata *au;
@@ -259,7 +259,7 @@ authunix_validate( AUTH *auth, struct opaque_auth *verf )
return (TRUE);
}
-static bool_t
+static int
authunix_refresh(AUTH *auth)
{
struct audata *au = AUTH_PRIVATE(auth);