Module Name:    src
Committed By:   rillig
Date:           Sat Nov  7 13:24:06 UTC 2020

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

Log Message:
make(1): replace hashed with cached in comments

The hash table is just an implementation detail, not worth to be
mentioned in comments.


To generate a diff of this commit:
cvs rdiff -u -r1.165 -r1.166 src/usr.bin/make/arch.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/arch.c
diff -u src/usr.bin/make/arch.c:1.165 src/usr.bin/make/arch.c:1.166
--- src/usr.bin/make/arch.c:1.165	Sat Nov  7 13:21:57 2020
+++ src/usr.bin/make/arch.c	Sat Nov  7 13:24:06 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: arch.c,v 1.165 2020/11/07 13:21:57 rillig Exp $	*/
+/*	$NetBSD: arch.c,v 1.166 2020/11/07 13:24:06 rillig Exp $	*/
 
 /*
  * Copyright (c) 1988, 1989, 1990, 1993
@@ -125,7 +125,7 @@
 #include "config.h"
 
 /*	"@(#)arch.c	8.2 (Berkeley) 1/2/94"	*/
-MAKE_RCSID("$NetBSD: arch.c,v 1.165 2020/11/07 13:21:57 rillig Exp $");
+MAKE_RCSID("$NetBSD: arch.c,v 1.166 2020/11/07 13:24:06 rillig Exp $");
 
 typedef struct List ArchList;
 typedef struct ListNode ArchListNode;
@@ -446,9 +446,9 @@ ArchStatMember(const char *archive, cons
 
     if (!addToCache) {
 	/*
-	 * Caller doesn't want the thing hashed, just use ArchFindMember
+	 * Caller doesn't want the thing cached, just use ArchFindMember
 	 * to read the header for the member out and close down the stream
-	 * again. Since the archive is not to be hashed, we assume there's
+	 * again. Since the archive is not to be cached, we assume there's
 	 * no need to allocate extra room for the header we're returning,
 	 * so just declare it static.
 	 */

Reply via email to