From 54c6ccc8cdf700ed7661ffdeaff4ed52c82b3e5f Mon Sep 17 00:00:00 2001 From: Tim Edwards Date: Tue, 24 Mar 2020 13:55:44 -0400 Subject: [PATCH] Corrected ExtMain() in the bplane branch (need to do this in master) --- extract/ExtMain.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/extract/ExtMain.c b/extract/ExtMain.c index d4701327..d56c2cea 100644 --- a/extract/ExtMain.c +++ b/extract/ExtMain.c @@ -586,8 +586,11 @@ extTimestampMisMatch(def) FILE *extFile; bool ret = TRUE; int stamp; + bool doLocal; - extFile = extFileOpen(def, (char *) NULL, "r", (char **) NULL); + doLocal = (ExtOptions & EXT_DOLOCAL) ? TRUE : FALSE; + + extFile = extFileOpen(def, (char *) NULL, "r", doLocal, (char **) NULL); if (extFile == NULL) return (TRUE);