Skip to content

Commit

Permalink
We don't want tolower, we want toupper, derp.
Browse files Browse the repository at this point in the history
  • Loading branch information
Subsentient committed Mar 5, 2015
1 parent bc5e92c commit c70a9c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/irc.c
Expand Up @@ -158,7 +158,7 @@ enum IRCMessageType IRC_GetMessageType(const char *InStream_)

for (; InStream[Inc] != ' ' && InStream[Inc] != '\0' && Inc < sizeof Command - 1; ++Inc)
{ /*Copy in the command.*/
Command[Inc] = tolower(InStream[Inc]);
Command[Inc] = toupper(InStream[Inc]);
}
Command[Inc] = '\0';

Expand Down

0 comments on commit c70a9c6

Please sign in to comment.