Deleted Added
full compact
ypxfr_getmap.c (80281) ypxfr_getmap.c (90297)
1/*
2 * Copyright (c) 1995
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

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

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#ifndef lint
34static const char rcsid[] =
1/*
2 * Copyright (c) 1995
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

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

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#ifndef lint
34static const char rcsid[] =
35 "$FreeBSD: head/libexec/ypxfr/ypxfr_getmap.c 80281 2001-07-24 12:33:08Z dd $";
35 "$FreeBSD: head/libexec/ypxfr/ypxfr_getmap.c 90297 2002-02-06 13:30:31Z des $";
36#endif /* not lint */
37
38#include <stdio.h>
39#include <time.h>
40#include <sys/types.h>
41#include <rpc/rpc.h>
42#include <rpc/xdr.h>
43#include <rpcsvc/yp.h>
44#include "ypxfr_extern.h"
45
36#endif /* not lint */
37
38#include <stdio.h>
39#include <time.h>
40#include <sys/types.h>
41#include <rpc/rpc.h>
42#include <rpc/xdr.h>
43#include <rpcsvc/yp.h>
44#include "ypxfr_extern.h"
45
46extern bool_t xdr_ypresp_all_seq __P(( XDR *, unsigned long * ));
46extern bool_t xdr_ypresp_all_seq(XDR *, unsigned long *);
47
48int (*ypresp_allfn)();
49void *ypresp_data;
50extern DB *specdbp;
51extern enum ypstat yp_errno;
52
53/*
54 * This is largely the same as yp_all() except we do the transfer

--- 49 unchanged lines hidden ---
47
48int (*ypresp_allfn)();
49void *ypresp_data;
50extern DB *specdbp;
51extern enum ypstat yp_errno;
52
53/*
54 * This is largely the same as yp_all() except we do the transfer

--- 49 unchanged lines hidden ---