second attempt to lower case

This commit is contained in:
Neale Pickett 2013-02-06 12:48:14 -07:00
parent 1ddc30bdaa
commit ab838fb8a4
1 changed files with 2 additions and 1 deletions

View File

@ -58,7 +58,8 @@ main(int argc, char *argv[])
/* Pull category name out of the token */
for (q = category; *p && (*p != ':'); p += 1) {
*(q++) = tolower(*p);
*p = tolower(*p);
*(q++) = *p;
}
*q = '\0';
if (p) p += 1;