Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
proview
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Esteban Blanc
proview
Commits
f9e5f40b
Commit
f9e5f40b
authored
Mar 05, 2004
by
claes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Case sensitivity in cmd set attr removed
parent
7a76cbd9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
15 deletions
+1
-15
wb/lib/wb/src/wb_utl.c
wb/lib/wb/src/wb_utl.c
+1
-15
No files found.
wb/lib/wb/src/wb_utl.c
View file @
f9e5f40b
...
...
@@ -4874,10 +4874,6 @@ static int utl_set_parameter (
char
*
object_element
;
int
elements
;
int
found
;
char
*
t
;
char
*
u
;
char
upper_name
[
80
];
char
namechar
;
char
logstr
[
200
];
static
char
value
[
200
];
char
*
logstrptr
=
logstr
;
...
...
@@ -4931,17 +4927,7 @@ static char value[200];
for
(
j
=
0
;
j
<
rows
;
j
++
)
{
/* Convert parname to upper case */
u
=
bodydef
[
j
].
ParName
;
t
=
upper_name
;
while
(
*
u
!=
'\0'
)
{
namechar
=
*
(
u
++
);
*
(
t
++
)
=
_toupper
(
namechar
);
}
*
t
=
'\0'
;
if
(
strcmp
(
parameter
,
upper_name
)
==
0
)
if
(
cdh_NoCaseStrcmp
(
parameter
,
bodydef
[
j
].
ParName
)
==
0
)
{
found
=
1
;
break
;
...
...
Write
Preview
Markdown
is supported
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