Deleted Added
full compact
bootp_subr.c (257176) bootp_subr.c (262763)
1/*-
2 * Copyright (c) 1995 Gordon Ross, Adam Glass
3 * Copyright (c) 1992 Regents of the University of California.
4 * All rights reserved.
5 *
6 * This software was developed by the Computer Systems Engineering group
7 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
8 * contributed to Berkeley.

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

36 * SUCH DAMAGE.
37 *
38 * based on:
39 * nfs/krpc_subr.c
40 * $NetBSD: krpc_subr.c,v 1.10 1995/08/08 20:43:43 gwr Exp $
41 */
42
43#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1995 Gordon Ross, Adam Glass
3 * Copyright (c) 1992 Regents of the University of California.
4 * All rights reserved.
5 *
6 * This software was developed by the Computer Systems Engineering group
7 * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and
8 * contributed to Berkeley.

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

36 * SUCH DAMAGE.
37 *
38 * based on:
39 * nfs/krpc_subr.c
40 * $NetBSD: krpc_subr.c,v 1.10 1995/08/08 20:43:43 gwr Exp $
41 */
42
43#include <sys/cdefs.h>
44__FBSDID("$FreeBSD: head/sys/nfs/bootp_subr.c 257176 2013-10-26 17:58:36Z glebius $");
44__FBSDID("$FreeBSD: head/sys/nfs/bootp_subr.c 262763 2014-03-05 01:17:47Z glebius $");
45
46#include "opt_bootp.h"
47#include "opt_nfs.h"
48#include "opt_rootdevname.h"
49
50#include <sys/param.h>
51#include <sys/systm.h>
52#include <sys/jail.h>

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

338bootpboot_p_rtentry(struct rtentry *rt)
339{
340
341 bootpboot_p_sa(rt_key(rt), rt_mask(rt));
342 printf(" ");
343 bootpboot_p_sa(rt->rt_gateway, NULL);
344 printf(" ");
345 printf("flags %x", (unsigned short) rt->rt_flags);
45
46#include "opt_bootp.h"
47#include "opt_nfs.h"
48#include "opt_rootdevname.h"
49
50#include <sys/param.h>
51#include <sys/systm.h>
52#include <sys/jail.h>

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

338bootpboot_p_rtentry(struct rtentry *rt)
339{
340
341 bootpboot_p_sa(rt_key(rt), rt_mask(rt));
342 printf(" ");
343 bootpboot_p_sa(rt->rt_gateway, NULL);
344 printf(" ");
345 printf("flags %x", (unsigned short) rt->rt_flags);
346 printf(" %d", (int) rt->rt_rmx.rmx_expire);
346 printf(" %d", (int) rt->rt_expire);
347 printf(" %s\n", rt->rt_ifp->if_xname);
348}
349
350void
351bootpboot_p_tree(struct radix_node *rn)
352{
353
354 while (rn != NULL) {

--- 1512 unchanged lines hidden ---
347 printf(" %s\n", rt->rt_ifp->if_xname);
348}
349
350void
351bootpboot_p_tree(struct radix_node *rn)
352{
353
354 while (rn != NULL) {

--- 1512 unchanged lines hidden ---