From 7f1217596e74691f8a921762a9d07a6a6da4c524 Mon Sep 17 00:00:00 2001 From: "R. Timothy Edwards" Date: Sat, 29 Nov 2025 15:01:21 -0500 Subject: [PATCH] Missed one additional place in the last commit where timestamps need to be predecated on the read/write status of cells. --- database/DBtimestmp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/DBtimestmp.c b/database/DBtimestmp.c index 1eb3a94f..dc9c6c89 100644 --- a/database/DBtimestmp.c +++ b/database/DBtimestmp.c @@ -227,7 +227,7 @@ DBUpdateStamps(def) else if (def->cd_flags & CDGETNEWSTAMP) { - if (def->cd_flags & CDFIXEDSTAMP) + if (def->cd_flags & (CDNOEDIT | CDFIXEDSTAMP)) def->cd_flags &= ~CDGETNEWSTAMP; else dbStampFunc(def);