mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-04-06 18:00:24 +08:00
Merge pull request #1919 from gsjaardema/patch-47
Fix so setting of NC_FORMATX_NC3 in parallel is kept
This commit is contained in:
commit
7630f466a2
@ -975,7 +975,7 @@ check_file_type(const char *path, int omode, int use_parallel,
|
||||
/* Look at the magic number */
|
||||
if(NC_interpret_magic_number(magic,model) == NC_NOERR
|
||||
&& model->format != 0) {
|
||||
if (model->format == NC_FORMAT_NC3 && use_parallel)
|
||||
if (use_parallel && (model->format == NC_FORMAT_NC3 || model->impl == NC_FORMATX_NC3))
|
||||
/* this is called from nc_open_par() and file is classic */
|
||||
model->impl = NC_FORMATX_PNETCDF;
|
||||
goto done; /* found something */
|
||||
|
Loading…
x
Reference in New Issue
Block a user