Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libcdi
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mpim-sw
libcdi
Commits
e189adae
Commit
e189adae
authored
11 years ago
by
Uwe Schulzweida
Browse files
Options
Downloads
Patches
Plain Diff
netCDF4 classic: existing files are converted to netCDF4 - classic flag is lost (bug fix)
parent
277007dd
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ChangeLog
+1
-0
1 addition, 0 deletions
ChangeLog
NEWS
+6
-0
6 additions, 0 deletions
NEWS
src/stream.c
+3
-2
3 additions, 2 deletions
src/stream.c
with
10 additions
and
2 deletions
ChangeLog
+
1
−
0
View file @
e189adae
...
...
@@ -5,6 +5,7 @@
2014-03-10 Uwe Schulzweida
* netCDF4 classic: existing files are converted to netCDF4 - classic flag is lost (bug fix)
* cgribexDefParam: check validity of parameter number
2014-03-04 Uwe Schulzweida
...
...
This diff is collapsed.
Click to expand it.
NEWS
+
6
−
0
View file @
e189adae
CDI NEWS
--------
Version 1.6.4 (20 May 2014):
New features:
Fixed bugs:
* netCDF4 classic: existing files are converted to netCDF4 - classic flag is lost
Version 1.6.3 (14 February 2014):
New features:
...
...
This diff is collapsed.
Click to expand it.
src/stream.c
+
3
−
2
View file @
e189adae
...
...
@@ -729,6 +729,9 @@ int cdiStreamOpenDefaultDelegate(const char *filename, const char *filemode,
return
(
CDI_ELIBNAVAIL
);
}
}
streamptr
->
filetype
=
filetype
;
return
fileID
;
}
...
...
@@ -766,7 +769,6 @@ int streamOpen(const char *filename, const char *filemode, int filetype)
if
(
streamID
<
0
)
return
(
CDI_ELIMIT
);
streamptr
->
filetype
=
filetype
;
streamptr
->
filemode
=
tolower
(
*
filemode
);
streamptr
->
filename
=
strdupx
(
filename
);
streamptr
->
fileID
=
fileID
;
...
...
@@ -818,7 +820,6 @@ static int streamOpenA(const char *filename, const char *filemode, int filetype)
streamID
=
streamptr
->
self
;
streamptr
->
filetype
=
filetype
;
streamptr
->
filemode
=
tolower
(
*
filemode
);
streamptr
->
filename
=
strdupx
(
filename
);
streamptr
->
fileID
=
fileID
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment