Deleted Added
full compact
svc_auth.c (74462) svc_auth.c (75094)
1/* $NetBSD: svc_auth.c,v 1.12 2000/07/06 03:10:35 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 23 unchanged lines hidden (view full) ---

32 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
33 */
34
35/* #ident "@(#)svc_auth.c 1.16 94/04/24 SMI" */
36
37#if 0
38#if !defined(lint) && defined(SCCSIDS)
39static char sccsid[] = "@(#)svc_auth.c 1.26 89/02/07 Copyr 1984 Sun Micro";
1/* $NetBSD: svc_auth.c,v 1.12 2000/07/06 03:10:35 christos Exp $ */
2
3/*
4 * Sun RPC is a product of Sun Microsystems, Inc. and is provided for
5 * unrestricted use provided that this legend is included on all tape
6 * media and as a part of the software program in whole or part. Users
7 * may copy or modify Sun RPC without charge, but are not authorized
8 * to license or distribute it to anyone else except as part of a product or

--- 23 unchanged lines hidden (view full) ---

32 * Copyright (c) 1986-1991 by Sun Microsystems Inc.
33 */
34
35/* #ident "@(#)svc_auth.c 1.16 94/04/24 SMI" */
36
37#if 0
38#if !defined(lint) && defined(SCCSIDS)
39static char sccsid[] = "@(#)svc_auth.c 1.26 89/02/07 Copyr 1984 Sun Micro";
40static const char rcsid[] = "$FreeBSD: head/lib/libc/rpc/svc_auth.c 74462 2001-03-19 12:50:13Z alfred $";
40static const char rcsid[] = "$FreeBSD: head/lib/libc/rpc/svc_auth.c 75094 2001-04-02 21:41:44Z iedowse $";
41#endif
42#endif
43
44/*
45 * svc_auth.c, Server-side rpc authenticator interface.
46 *
47 */
48
41#endif
42#endif
43
44/*
45 * svc_auth.c, Server-side rpc authenticator interface.
46 *
47 */
48
49#include "reentrant.h"
50#include "namespace.h"
49#include "namespace.h"
50#include "reentrant.h"
51#include <sys/types.h>
52#include <rpc/rpc.h>
53#include <stdlib.h>
54#include "un-namespace.h"
55
56/*
57 * svcauthsw is the bdevsw of server side authentication.
58 *

--- 155 unchanged lines hidden ---
51#include <sys/types.h>
52#include <rpc/rpc.h>
53#include <stdlib.h>
54#include "un-namespace.h"
55
56/*
57 * svcauthsw is the bdevsw of server side authentication.
58 *

--- 155 unchanged lines hidden ---