svn commit: r356602 - head/usr.sbin/inetd

Kyle Evans kevans at FreeBSD.org
Fri Jan 10 14:43:58 UTC 2020


Author: kevans
Date: Fri Jan 10 14:43:57 2020
New Revision: 356602
URL: https://svnweb.freebsd.org/changeset/base/356602

Log:
  inetd: two more nits
  
  Use __COPYRIGHT for copyright to simply either embed it via .ident or have
  it properly marked __unused
  
  Move an ipsec reference to IPSEC

Modified:
  head/usr.sbin/inetd/inetd.c

Modified: head/usr.sbin/inetd/inetd.c
==============================================================================
--- head/usr.sbin/inetd/inetd.c	Fri Jan 10 14:40:04 2020	(r356601)
+++ head/usr.sbin/inetd/inetd.c	Fri Jan 10 14:43:57 2020	(r356602)
@@ -29,10 +29,12 @@
  * SUCH DAMAGE.
  */
 
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
 #ifndef lint
-static const char copyright[] =
-"@(#) Copyright (c) 1983, 1991, 1993, 1994\n\
-	The Regents of the University of California.  All rights reserved.\n";
+__COPYRIGHT("@(#) Copyright (c) 1983, 1991, 1993, 1994\n\
+	The Regents of the University of California.  All rights reserved.\n");
 #endif /* not lint */
 
 #ifndef lint
@@ -41,9 +43,6 @@ static char sccsid[] = "@(#)from: inetd.c	8.4 (Berkele
 #endif
 #endif /* not lint */
 
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
 /*
  * Inetd - Internet super-server
  *
@@ -1661,7 +1660,9 @@ more:
 		break;
 	}
 	if (cp == NULL) {
+#ifdef IPSEC
 		free(policy);
+#endif
 		return (NULL);
 	}
 


More information about the svn-src-head mailing list