svn commit: r336975 - head/usr.sbin/config

Kyle Evans kevans at FreeBSD.org
Tue Jul 31 16:08:18 UTC 2018


Author: kevans
Date: Tue Jul 31 16:08:17 2018
New Revision: 336975
URL: https://svnweb.freebsd.org/changeset/base/336975

Log:
  Remove variable re-inserted during mis-application of r336973

Modified:
  head/usr.sbin/config/mkmakefile.c

Modified: head/usr.sbin/config/mkmakefile.c
==============================================================================
--- head/usr.sbin/config/mkmakefile.c	Tue Jul 31 16:04:49 2018	(r336974)
+++ head/usr.sbin/config/mkmakefile.c	Tue Jul 31 16:08:17 2018	(r336975)
@@ -250,8 +250,7 @@ sanitize_envline(char *result, const char *src)
 static bool
 preprocess(char *line, char *result)
 {
-
-	char result[BUFSIZ], *s;
+	char *s;
 
 	/* Strip any comments */
 	if ((s = strchr(line, '#')) != NULL)


More information about the svn-src-all mailing list