Missed one instance of extFileOpen() in the implementation of the

"extract do local" command option.
This commit is contained in:
Tim Edwards 2020-03-24 13:57:46 -04:00
parent fe727cc6f2
commit 00e1c01d8d
1 changed files with 5 additions and 1 deletions

View File

@ -593,7 +593,11 @@ extTimestampMisMatch(def)
bool ret = TRUE;
int stamp;
extFile = extFileOpen(def, (char *) NULL, "r", (char **) NULL);
bool doLocal;
doLocal = (ExtOptions & EXT_DOLOCAL) ? TRUE : FALSE;
extFile = extFileOpen(def, (char *) NULL, "r", doLocal, (char **) NULL);
if (extFile == NULL)
return (TRUE);