Module Name:    src
Committed By:   rillig
Date:           Fri Oct 23 15:54:18 UTC 2020

Modified Files:
        src/usr.bin/make: job.c

Log Message:
make(1): remove unused null shell


To generate a diff of this commit:
cvs rdiff -u -r1.272 -r1.273 src/usr.bin/make/job.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/make/job.c
diff -u src/usr.bin/make/job.c:1.272 src/usr.bin/make/job.c:1.273
--- src/usr.bin/make/job.c:1.272	Fri Oct 23 15:19:51 2020
+++ src/usr.bin/make/job.c	Fri Oct 23 15:54:17 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: job.c,v 1.272 2020/10/23 15:19:51 rillig Exp $	*/
+/*	$NetBSD: job.c,v 1.273 2020/10/23 15:54:17 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990 The Regents of the University of California.
@@ -143,7 +143,7 @@
 #include "trace.h"
 
 /*	"@(#)job.c	8.2 (Berkeley) 3/19/94"	*/
-MAKE_RCSID("$NetBSD: job.c,v 1.272 2020/10/23 15:19:51 rillig Exp $");
+MAKE_RCSID("$NetBSD: job.c,v 1.273 2020/10/23 15:54:17 rillig Exp $");
 
 # define STATIC static
 
@@ -347,15 +347,6 @@ static Shell    shells[] = {
     '#',			/* .commentChar */
     "v", 			/* .echo */
     "e",			/* .exit */
-},
-    /*
-     * UNKNOWN.
-     */
-{
-    NULL,
-    FALSE, NULL, NULL, NULL, 0,
-    FALSE, NULL, NULL, NULL, NULL, '\0',
-    NULL, NULL,
 }
 };
 
@@ -2207,9 +2198,10 @@ static void JobSigReset(void)
 static Shell *
 JobMatchShell(const char *name)
 {
-    Shell	*sh;
+    Shell *sh = shells;
+    const Shell *shellsEnd = sh + sizeof shells / sizeof shells[0];
 
-    for (sh = shells; sh->name != NULL; sh++) {
+    for (sh = shells; sh < shellsEnd; sh++) {
 	if (strcmp(name, sh->name) == 0)
 		return sh;
     }

Reply via email to