mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 17:12:51 +02:00
Use g_ascii_str{,n}casecmp for case insensitive comparison with
ascii only strings. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@4739 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
parent
7df46597e1
commit
72930e0be3
12 changed files with 35 additions and 35 deletions
|
|
@ -257,7 +257,7 @@ void irc_server_purge_output(IRC_SERVER_REC *server, const char *target)
|
|||
redirect = tmp->next->data;
|
||||
|
||||
if ((target == NULL || command_has_target(cmd, target)) &&
|
||||
g_strncasecmp(cmd, "PONG ", 5) != 0) {
|
||||
g_ascii_strncasecmp(cmd, "PONG ", 5) != 0) {
|
||||
/* remove the redirection */
|
||||
link = tmp->next;
|
||||
server->cmdqueue =
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue