mirror of
https://gitlab.xiph.org/xiph/icecast-common.git
synced 2025-01-03 14:56:36 -05:00
ermmm, let's use the right operator.
svn path=/trunk/httpp/; revision=4963
This commit is contained in:
parent
5408558756
commit
ec380c4565
@ -547,7 +547,7 @@ void httpp_destroy(http_parser_t *parser)
|
|||||||
static char *_lowercase(char *str)
|
static char *_lowercase(char *str)
|
||||||
{
|
{
|
||||||
char *p = str;
|
char *p = str;
|
||||||
for (; *p |= '\0'; p++)
|
for (; *p != '\0'; p++)
|
||||||
*p = tolower(*p);
|
*p = tolower(*p);
|
||||||
|
|
||||||
return str;
|
return str;
|
||||||
|
Loading…
Reference in New Issue
Block a user