1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-10-06 04:45:08 -04: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 032ad5d9ff
commit ea2dc4a67f

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;