Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/usr.bin/make make(1): remove wrong comment about possible Y2...



details:   https://anonhg.NetBSD.org/src/rev/60dc0ce53b1c
branches:  trunk
changeset: 942952:60dc0ce53b1c
user:      rillig <rillig%NetBSD.org@localhost>
date:      Sat Aug 22 19:27:22 2020 +0000

description:
make(1): remove wrong comment about possible Y2038 problem

The "time" that is mentioned is not clock time but a sequence number.

diffstat:

 usr.bin/make/make.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (20 lines):

diff -r b0a9b0a7ca63 -r 60dc0ce53b1c usr.bin/make/make.h
--- a/usr.bin/make/make.h       Sat Aug 22 18:47:31 2020 +0000
+++ b/usr.bin/make/make.h       Sat Aug 22 19:27:22 2020 +0000
@@ -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 @@
      * 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 $@, $<, $?. */



Home | Main Index | Thread Index | Old Index