1
0
mirror of https://gitlab.xiph.org/xiph/icecast-common.git synced 2024-06-16 06:15:24 +00:00

ermmm, let's use the right operator.

svn path=/trunk/httpp/; revision=4963
This commit is contained in:
Karl Heyes 2003-06-18 15:52:25 +00:00
parent 5408558756
commit ec380c4565

View File

@ -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;