Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mpim-sw
cdo
Commits
9514a5e5
Commit
9514a5e5
authored
Dec 03, 2013
by
Uwe Schulzweida
Browse files
vlistCompare: ignore case of parameter names
parent
2601d58c
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/cdo_vlist.c
View file @
9514a5e5
...
...
@@ -140,6 +140,8 @@ void vlistCompare(int vlistID1, int vlistID2, int flag)
char
name1
[
CDI_MAX_NAME
],
name2
[
CDI_MAX_NAME
];
vlistInqVarName
(
vlistID1
,
varID
,
name1
);
vlistInqVarName
(
vlistID2
,
varID
,
name2
);
strtolower
(
name1
);
strtolower
(
name2
);
if
(
strcmp
(
name1
,
name2
)
!=
0
)
{
cdoWarning
(
"Input streams have different parameters!"
);
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment