Deleted Added
full compact
auth_none.c (74462) auth_none.c (75094)
1/* $NetBSD: auth_none.c,v 1.13 2000/01/22 22:19:17 mycroft 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

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

26 *
27 * Sun Microsystems, Inc.
28 * 2550 Garcia Avenue
29 * Mountain View, California 94043
30 */
31
32#include <sys/cdefs.h>
33#if defined(LIBC_SCCS) && !defined(lint)
1/* $NetBSD: auth_none.c,v 1.13 2000/01/22 22:19:17 mycroft 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

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

26 *
27 * Sun Microsystems, Inc.
28 * 2550 Garcia Avenue
29 * Mountain View, California 94043
30 */
31
32#include <sys/cdefs.h>
33#if defined(LIBC_SCCS) && !defined(lint)
34static char *rcsid = "$FreeBSD: head/lib/libc/rpc/auth_none.c 74462 2001-03-19 12:50:13Z alfred $";
34static char *rcsid = "$FreeBSD: head/lib/libc/rpc/auth_none.c 75094 2001-04-02 21:41:44Z iedowse $";
35static char *sccsid = "@(#)auth_none.c 1.19 87/08/11 Copyr 1984 Sun Micro";
36static char *sccsid = "@(#)auth_none.c 2.1 88/07/29 4.0 RPCSRC";
37#endif
38
39/*
40 * auth_none.c
41 * Creates a client authentication handle for passing "null"
42 * credentials and verifiers to remote systems.
43 *
44 * Copyright (C) 1984, Sun Microsystems, Inc.
45 */
46
35static char *sccsid = "@(#)auth_none.c 1.19 87/08/11 Copyr 1984 Sun Micro";
36static char *sccsid = "@(#)auth_none.c 2.1 88/07/29 4.0 RPCSRC";
37#endif
38
39/*
40 * auth_none.c
41 * Creates a client authentication handle for passing "null"
42 * credentials and verifiers to remote systems.
43 *
44 * Copyright (C) 1984, Sun Microsystems, Inc.
45 */
46
47#include "reentrant.h"
48#include "namespace.h"
47#include "namespace.h"
48#include "reentrant.h"
49#include <assert.h>
50#include <stdlib.h>
51#include <rpc/types.h>
52#include <rpc/xdr.h>
53#include <rpc/auth.h>
54#include "un-namespace.h"
55
56#define MAX_MARSHAL_SIZE 20

--- 122 unchanged lines hidden ---
49#include <assert.h>
50#include <stdlib.h>
51#include <rpc/types.h>
52#include <rpc/xdr.h>
53#include <rpc/auth.h>
54#include "un-namespace.h"
55
56#define MAX_MARSHAL_SIZE 20

--- 122 unchanged lines hidden ---