svn commit: r351424 - head/sbin/ping

Alan Somers asomers at FreeBSD.org
Fri Aug 23 15:24:19 UTC 2019


Author: asomers
Date: Fri Aug 23 15:24:18 2019
New Revision: 351424
URL: https://svnweb.freebsd.org/changeset/base/351424

Log:
  ping: fix include guard symbol name to reflect the header file name
  
  Submitted by:	Ján Sučan <sucanjan at gmail.com>
  MFC after:	2 weeks
  MFC-With:	351171
  Sponsored by:	Google LLC (Google Summer of Code 2019)
  Differential Revision:	https://reviews.freebsd.org/D21374

Modified:
  head/sbin/ping/utils.h

Modified: head/sbin/ping/utils.h
==============================================================================
--- head/sbin/ping/utils.h	Fri Aug 23 15:22:20 2019	(r351423)
+++ head/sbin/ping/utils.h	Fri Aug 23 15:24:18 2019	(r351424)
@@ -28,8 +28,8 @@
  * $FreeBSD$
  */
 
-#ifndef PING_H
-#define PING_H 1
+#ifndef UTILS_H
+#define UTILS_H 1
 
 #include <sys/types.h>
 


More information about the svn-src-all mailing list