Missed one instance of extFileOpen() in the implementation of the
"extract do local" command option.
This commit is contained in:
parent
fe727cc6f2
commit
00e1c01d8d
|
|
@ -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);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue