[Midnightbsd-cvs] src [10374] trunk/usr.sbin/nfscbd/nfscbd.c: sync with freebsd 10-stable

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Jun 3 19:20:27 EDT 2018


Revision: 10374
          http://svnweb.midnightbsd.org/src/?rev=10374
Author:   laffer1
Date:     2018-06-03 19:20:26 -0400 (Sun, 03 Jun 2018)
Log Message:
-----------
sync with freebsd 10-stable

Modified Paths:
--------------
    trunk/usr.sbin/nfscbd/Makefile
    trunk/usr.sbin/nfscbd/nfscbd.8
    trunk/usr.sbin/nfscbd/nfscbd.c

Property Changed:
----------------
    trunk/usr.sbin/nfscbd/nfscbd.8

Modified: trunk/usr.sbin/nfscbd/Makefile
===================================================================
--- trunk/usr.sbin/nfscbd/Makefile	2018-06-03 23:20:07 UTC (rev 10373)
+++ trunk/usr.sbin/nfscbd/Makefile	2018-06-03 23:20:26 UTC (rev 10374)
@@ -1,4 +1,5 @@
 # $MidnightBSD$
+# $FreeBSD: stable/10/usr.sbin/nfscbd/Makefile 192811 2009-05-26 15:19:04Z rmacklem $
 
 PROG=	nfscbd
 MAN=	nfscbd.8

Modified: trunk/usr.sbin/nfscbd/nfscbd.8
===================================================================
--- trunk/usr.sbin/nfscbd/nfscbd.8	2018-06-03 23:20:07 UTC (rev 10373)
+++ trunk/usr.sbin/nfscbd/nfscbd.8	2018-06-03 23:20:26 UTC (rev 10374)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\" Copyright (c) 2009 Rick Macklem, University of Guelph
 .\" All rights reserved.
 .\"
@@ -22,7 +23,7 @@
 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 .\" SUCH DAMAGE.
 .\"
-.\" $MidnightBSD$
+.\" $FreeBSD: stable/10/usr.sbin/nfscbd/nfscbd.8 243238 2012-11-18 16:33:51Z eadler $
 .\"
 .Dd April 25, 2009
 .Dt NFSCBD 8


Property changes on: trunk/usr.sbin/nfscbd/nfscbd.8
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/usr.sbin/nfscbd/nfscbd.c
===================================================================
--- trunk/usr.sbin/nfscbd/nfscbd.c	2018-06-03 23:20:07 UTC (rev 10373)
+++ trunk/usr.sbin/nfscbd/nfscbd.c	2018-06-03 23:20:26 UTC (rev 10374)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*-
  * Copyright (c) 2009 Rick Macklem, University of Guelph
  * All rights reserved.
@@ -26,7 +27,7 @@
  */
 
 #include <sys/cdefs.h>
-__MBSDID("$MidnightBSD$");
+__FBSDID("$FreeBSD: stable/10/usr.sbin/nfscbd/nfscbd.c 241737 2012-10-19 14:49:42Z ed $");
 
 #include <sys/param.h>
 #include <sys/ioctl.h>
@@ -66,12 +67,12 @@
 /* Global defs */
 #ifdef DEBUG
 #define	syslog(e, s)	fprintf(stderr,(s))
-int	debug = 1;
+static int	debug = 1;
 #else
-int	debug = 0;
+static int	debug = 0;
 #endif
 
-pid_t children;
+static pid_t	children;
 
 static void	nonfs(int);
 static void	reapchild(int);



More information about the Midnightbsd-cvs mailing list