Removed some useless code

This commit is contained in:
dmh 2014-10-11 12:27:17 -06:00
parent e79befedfe
commit 7c7db22bc7
2 changed files with 12 additions and 5 deletions

View File

@ -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)

View File

@ -1,6 +1,6 @@
# test: ../ncdump/cdl4/ref_const_test.cdl
# test: ../ncdump/cdl4/ref_tst_chardata.cdl
K="-k4"
K="-k3"
F="z.cdl"
#B="-B12"
DBG="-d"