Deleted Added
full compact
crypt_client.c (90256) crypt_client.c (92990)
1/*
2 * Copyright (c) 1996
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
1/*
2 * Copyright (c) 1996
3 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

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

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#include <sys/cdefs.h>
34__FBSDID("$FreeBSD: head/lib/libc/rpc/crypt_client.c 92990 2002-03-22 23:18:37Z obrien $");
35
33#include "namespace.h"
34#include <sys/types.h>
35#include <rpc/des_crypt.h>
36#include <rpc/des.h>
37#include <string.h>
38#include <rpcsvc/crypt.h>
39#include "un-namespace.h"
40
36#include "namespace.h"
37#include <sys/types.h>
38#include <rpc/des_crypt.h>
39#include <rpc/des.h>
40#include <string.h>
41#include <rpcsvc/crypt.h>
42#include "un-namespace.h"
43
41#ifndef lint
42static const char rcsid[] = "$FreeBSD: head/lib/libc/rpc/crypt_client.c 90256 2002-02-05 19:26:04Z alfred $";
43#endif
44
45int
46_des_crypt_call(buf, len, dparms)
47 char *buf;
48 int len;
49 struct desparams *dparms;
50{
51 CLIENT *clnt;
52 desresp *result_1;

--- 49 unchanged lines hidden ---
44int
45_des_crypt_call(buf, len, dparms)
46 char *buf;
47 int len;
48 struct desparams *dparms;
49{
50 CLIENT *clnt;
51 desresp *result_1;

--- 49 unchanged lines hidden ---