Deleted Added
full compact
kern.c (161394) kern.c (194880)
1/*-
2 * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * from BSDI kern.c,v 1.2 1998/11/25 22:38:27 don Exp
29 */
30
31#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 1997 Berkeley Software Design, Inc. All rights reserved.
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer.

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

24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * from BSDI kern.c,v 1.2 1998/11/25 22:38:27 don Exp
29 */
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD: head/usr.sbin/rpc.lockd/kern.c 161394 2006-08-17 05:55:20Z maxim $");
32__FBSDID("$FreeBSD: head/usr.sbin/rpc.lockd/kern.c 194880 2009-06-24 18:42:21Z dfr $");
33
34#include <sys/param.h>
35#include <sys/mount.h>
36#include <sys/queue.h>
37#include <sys/socket.h>
38#include <sys/stat.h>
39
40#include <netinet/in.h>

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

48#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
51#include <syslog.h>
52#include <unistd.h>
53#include <netdb.h>
54
55#include "nlm_prot.h"
33
34#include <sys/param.h>
35#include <sys/mount.h>
36#include <sys/queue.h>
37#include <sys/socket.h>
38#include <sys/stat.h>
39
40#include <netinet/in.h>

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

48#include <stdio.h>
49#include <stdlib.h>
50#include <string.h>
51#include <syslog.h>
52#include <unistd.h>
53#include <netdb.h>
54
55#include "nlm_prot.h"
56#include <nfs/rpcv2.h>
57#include <nfs/nfsproto.h>
58#include <nfsclient/nfs_lock.h>
59
60#include "lockd.h"
61#include "lockd_lock.h"
62#include <nfsclient/nfs.h>
63
64#define DAEMON_USERNAME "daemon"

--- 542 unchanged lines hidden ---
56#include <nfs/nfsproto.h>
57#include <nfsclient/nfs_lock.h>
58
59#include "lockd.h"
60#include "lockd_lock.h"
61#include <nfsclient/nfs.h>
62
63#define DAEMON_USERNAME "daemon"

--- 542 unchanged lines hidden ---