svn commit: r351079 - head/sbin/ping6

Alan Somers asomers at FreeBSD.org
Thu Aug 15 15:49:02 UTC 2019


Author: asomers
Date: Thu Aug 15 15:49:01 2019
New Revision: 351079
URL: https://svnweb.freebsd.org/changeset/base/351079

Log:
  ping6: quiet warning about unused copyright variable
  
  Submitted by:	Ján Sučan <sucanjan at gmail.com>
  MFC after:	2 weeks
  Sponsored by:	Google, inc. (Google Summer of Code 2019)
  Differential Revision:	https://reviews.freebsd.org/D21270

Modified:
  head/sbin/ping6/ping6.c

Modified: head/sbin/ping6/ping6.c
==============================================================================
--- head/sbin/ping6/ping6.c	Thu Aug 15 15:47:48 2019	(r351078)
+++ head/sbin/ping6/ping6.c	Thu Aug 15 15:49:01 2019	(r351079)
@@ -65,6 +65,7 @@
  * SUCH DAMAGE.
  */
 
+#if 0
 #ifndef lint
 static const char copyright[] =
 "@(#) Copyright (c) 1989, 1993\n\
@@ -72,10 +73,9 @@ static const char copyright[] =
 #endif /* not lint */
 
 #ifndef lint
-#if 0
 static char sccsid[] = "@(#)ping.c	8.1 (Berkeley) 6/5/93";
-#endif
 #endif /* not lint */
+#endif
 
 #include <sys/cdefs.h>
 __FBSDID("$FreeBSD$");


More information about the svn-src-head mailing list