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-Server
Commits
9353b5e4
Commit
9353b5e4
authored
Nov 07, 2014
by
Philipp Schafft
🦁
Browse files
fixing some compiler warnings
svn path=/icecast/trunk/httpp/; revision=19281
parent
fc63b67b
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/httpp/httpp.c
View file @
9353b5e4
...
...
@@ -91,14 +91,13 @@ static int split_headers(char *data, unsigned long len, char **line)
static
void
parse_headers
(
http_parser_t
*
parser
,
char
**
line
,
int
lines
)
{
int
i
,
l
;
int
whitespace
,
where
,
slen
;
int
i
,
l
;
int
whitespace
,
slen
;
char
*
name
=
NULL
;
char
*
value
=
NULL
;
/* parse the name: value lines. */
for
(
l
=
1
;
l
<
lines
;
l
++
)
{
where
=
0
;
whitespace
=
0
;
name
=
line
[
l
];
value
=
NULL
;
...
...
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