[Midnightbsd-cvs] src [10330] trunk/usr.sbin/spray/spray.c: tag

laffer1 at midnightbsd.org laffer1 at midnightbsd.org
Sun Jun 3 15:51:36 EDT 2018


Revision: 10330
          http://svnweb.midnightbsd.org/src/?rev=10330
Author:   laffer1
Date:     2018-06-03 15:51:36 -0400 (Sun, 03 Jun 2018)
Log Message:
-----------
tag

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

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

Modified: trunk/usr.sbin/spray/Makefile
===================================================================
--- trunk/usr.sbin/spray/Makefile	2018-06-03 19:51:12 UTC (rev 10329)
+++ trunk/usr.sbin/spray/Makefile	2018-06-03 19:51:36 UTC (rev 10330)
@@ -1,4 +1,5 @@
-# $FreeBSD: src/usr.sbin/spray/Makefile,v 1.10 2001/07/20 06:20:19 obrien Exp $
+# $MidnightBSD$
+# $FreeBSD: stable/10/usr.sbin/spray/Makefile 80029 2001-07-20 06:20:32Z obrien $
 
 PROG=	spray
 MAN=	spray.8

Modified: trunk/usr.sbin/spray/spray.8
===================================================================
--- trunk/usr.sbin/spray/spray.8	2018-06-03 19:51:12 UTC (rev 10329)
+++ trunk/usr.sbin/spray/spray.8	2018-06-03 19:51:36 UTC (rev 10330)
@@ -1,3 +1,4 @@
+.\" $MidnightBSD$
 .\"
 .\" Copyright (c) 1994 James A. Jegers
 .\" All rights reserved.
@@ -21,7 +22,7 @@
 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 .\"
-.\" $FreeBSD: src/usr.sbin/spray/spray.8,v 1.10 2002/07/14 14:46:18 charnier Exp $
+.\" $FreeBSD: stable/10/usr.sbin/spray/spray.8 99968 2002-07-14 14:47:15Z charnier $
 .\"
 .Dd July 10, 1995
 .Dt SPRAY 8


Property changes on: trunk/usr.sbin/spray/spray.8
___________________________________________________________________
Added: svn:keywords
## -0,0 +1 ##
+MidnightBSD=%H
\ No newline at end of property
Modified: trunk/usr.sbin/spray/spray.c
===================================================================
--- trunk/usr.sbin/spray/spray.c	2018-06-03 19:51:12 UTC (rev 10329)
+++ trunk/usr.sbin/spray/spray.c	2018-06-03 19:51:36 UTC (rev 10330)
@@ -1,3 +1,4 @@
+/* $MidnightBSD$ */
 /*
  * Copyright (c) 1993 Winning Strategies, Inc.
  * All rights reserved.
@@ -30,7 +31,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-  "$FreeBSD: src/usr.sbin/spray/spray.c,v 1.10 2002/07/15 18:53:52 alfred Exp $";
+  "$FreeBSD: stable/10/usr.sbin/spray/spray.c 227261 2011-11-06 19:02:49Z ed $";
 #endif /* not lint */
 
 #include <err.h>
@@ -49,12 +50,12 @@
 static void print_xferstats(unsigned int, int, double);
 
 /* spray buffer */
-char spray_buffer[SPRAYMAX];
+static char spray_buffer[SPRAYMAX];
 
 /* RPC timeouts */
-struct timeval NO_DEFAULT = { -1, -1 };
-struct timeval ONE_WAY = { 0, 0 };
-struct timeval TIMEOUT = { 25, 0 };
+static struct timeval NO_DEFAULT = { -1, -1 };
+static struct timeval ONE_WAY = { 0, 0 };
+static struct timeval TIMEOUT = { 25, 0 };
 
 int
 main(int argc, char *argv[])



More information about the Midnightbsd-cvs mailing list