mirror of
https://github.com/irssi/irssi.git
synced 2026-08-20 09:02:13 +02:00
Match LS instead of checking the first letter only
This commit is contained in:
parent
6c45ab0493
commit
f3a5355648
1 changed files with 1 additions and 1 deletions
|
|
@ -119,7 +119,7 @@ static void event_cap (IRC_SERVER_REC *server, char *args, char *nick, char *add
|
||||||
|
|
||||||
/* Multiline responses have an additional parameter and we have to do
|
/* Multiline responses have an additional parameter and we have to do
|
||||||
* this stupid dance to parse them */
|
* this stupid dance to parse them */
|
||||||
if (evt[0] == 'L' && !strcmp(star, "*")) {
|
if (!g_ascii_strcasecmp(evt, "LS") && !strcmp(star, "*")) {
|
||||||
multiline = TRUE;
|
multiline = TRUE;
|
||||||
}
|
}
|
||||||
/* This branch covers the '*' parameter isn't present, adjust the
|
/* This branch covers the '*' parameter isn't present, adjust the
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue