Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
Icecast-libshout
Commits
e01c9c99
Commit
e01c9c99
authored
Jun 18, 2003
by
Karl Heyes
Browse files
ermmm, let's use the right operator.
svn path=/trunk/httpp/; revision=4963
parent
b790b522
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/httpp/httpp.c
View file @
e01c9c99
...
...
@@ -547,7 +547,7 @@ void httpp_destroy(http_parser_t *parser)
static
char
*
_lowercase
(
char
*
str
)
{
char
*
p
=
str
;
for
(;
*
p
|
=
'\0'
;
p
++
)
for
(;
*
p
!
=
'\0'
;
p
++
)
*
p
=
tolower
(
*
p
);
return
str
;
...
...
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