mirror of
https://github.com/Unidata/netcdf-c.git
synced 2025-03-31 17:50:26 +08:00
Removed some useless code
This commit is contained in:
parent
e79befedfe
commit
7c7db22bc7
@ -1721,13 +1721,20 @@ NC_open(const char *path, int cmode,
|
||||
return stat;
|
||||
}
|
||||
|
||||
#if 1
|
||||
if(model == 0) {
|
||||
fprintf(stderr,"Model != 0\n");
|
||||
return NC_ENOTNC;
|
||||
}
|
||||
#else
|
||||
Not longer needed
|
||||
/* Look to the incoming cmode for hints */
|
||||
if(model == 0) {
|
||||
if(cmode & NC_PNETCDF) model |= NC_DISPATCH_NC5;
|
||||
else if(cmode & NC_NETCDF4) model |= NC_DISPATCH_NC4;
|
||||
}
|
||||
|
||||
if(cmode & NC_PNETCDF) model = NC_DISPATCH_NC5;
|
||||
else if(cmode & NC_NETCDF4) model = NC_DISPATCH_NC4;
|
||||
}
|
||||
if(model == 0) model = NC_DISPATCH_NC3; /* final default */
|
||||
#endif
|
||||
|
||||
/* Force flag consistentcy */
|
||||
if(model & NC_DISPATCH_NC4)
|
||||
|
Loading…
x
Reference in New Issue
Block a user