diff options
author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-05 02:59:00 +0000 |
---|---|---|
committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1996-06-05 02:59:00 +0000 |
commit | 78e55a1f29558e8be54566ead1e7be8ab9d45273 (patch) | |
tree | 65fd45fa55d0cd3888b40a4f41dd3383616dfd74 /lib/libc/rpc/auth_unix.c | |
parent | 885f2f31b4599f4bc7468278c783c1c30f1f86ed (diff) |
Notes
Diffstat (limited to 'lib/libc/rpc/auth_unix.c')
-rw-r--r-- | lib/libc/rpc/auth_unix.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/lib/libc/rpc/auth_unix.c b/lib/libc/rpc/auth_unix.c index b63b95954c52..777f42182371 100644 --- a/lib/libc/rpc/auth_unix.c +++ b/lib/libc/rpc/auth_unix.c @@ -47,8 +47,6 @@ static char *rcsid = "$Id: auth_unix.c,v 1.4 1995/05/30 05:41:12 rgrimes Exp $"; #include <stdio.h> #include <stdlib.h> -#include <unistd.h> -#include <string.h> #include <sys/param.h> #include <rpc/types.h> @@ -85,7 +83,7 @@ struct audata { }; #define AUTH_PRIVATE(auth) ((struct audata *)auth->ah_private) -static void marshal_new_auth(); +static bool_t marshal_new_auth(); /* * This goop is here because some servers refuse to accept a @@ -94,7 +92,7 @@ static void marshal_new_auth(); */ static int authunix_maxgrouplist = 0; -void +int set_rpc_maxgrouplist(int num) { authunix_maxgrouplist = num; @@ -330,7 +328,7 @@ authunix_destroy(auth) * Marshals (pre-serializes) an auth struct. * sets private data, au_marshed and au_mpos */ -static void +static bool_t marshal_new_auth(auth) register AUTH *auth; { |