Module Name: src
Committed By: rillig
Date: Sat Aug 22 19:27:22 UTC 2020
Modified Files:
src/usr.bin/make: make.h
Log Message:
make(1): remove wrong comment about possible Y2038 problem
The "time" that is mentioned is not clock time but a sequence number.
To generate a diff of this commit:
cvs rdiff -u -r1.121 -r1.122 src/usr.bin/make/make.h
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/make.h
diff -u src/usr.bin/make/make.h:1.121 src/usr.bin/make/make.h:1.122
--- src/usr.bin/make/make.h:1.121 Sat Aug 22 18:47:31 2020
+++ src/usr.bin/make/make.h Sat Aug 22 19:27:22 2020
@@ -1,4 +1,4 @@
-/* $NetBSD: make.h,v 1.121 2020/08/22 18:47:31 rillig Exp $ */
+/* $NetBSD: make.h,v 1.122 2020/08/22 19:27:22 rillig Exp $ */
/*
* Copyright (c) 1988, 1989, 1990, 1993
@@ -298,8 +298,8 @@ typedef struct GNode {
* list */
struct GNode *centurion;
- /* Last time we tried to make this node */
- unsigned int checked; /* XXX: year 2038 */
+ /* Last time (sequence number) we tried to make this node */
+ unsigned int checked;
/* The "local" variables that are specific to this target and this target
* only, such as $@, $<, $?. */