Deleted Added
sdiff udiff text old ( 90256 ) new ( 92990 )
full compact
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 "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
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 ---