mirror of
https://github.com/irssi/irssi.git
synced 2024-12-04 14:46:39 -05:00
Merge pull request #533 from dequis/statusmess
Set the default STATUSMSG to @ instead of @+ if it's missing
This commit is contained in:
commit
e4f8abc973
@ -41,7 +41,7 @@ int fe_channel_is_opchannel(IRC_SERVER_REC *server, const char *target)
|
|||||||
|
|
||||||
statusmsg = g_hash_table_lookup(server->isupport, "statusmsg");
|
statusmsg = g_hash_table_lookup(server->isupport, "statusmsg");
|
||||||
if (statusmsg == NULL)
|
if (statusmsg == NULL)
|
||||||
statusmsg = "@+";
|
statusmsg = "@";
|
||||||
|
|
||||||
return strchr(statusmsg, *target) != NULL;
|
return strchr(statusmsg, *target) != NULL;
|
||||||
}
|
}
|
||||||
@ -61,12 +61,9 @@ const char *fe_channel_skip_prefix(IRC_SERVER_REC *server, const char *target)
|
|||||||
statusmsg = g_hash_table_lookup(server->isupport, "statusmsg");
|
statusmsg = g_hash_table_lookup(server->isupport, "statusmsg");
|
||||||
|
|
||||||
/* Hack: for bahamut 1.4 which sends neither STATUSMSG nor
|
/* Hack: for bahamut 1.4 which sends neither STATUSMSG nor
|
||||||
* WALLCHOPS in 005, accept @#chan and @+#chan (but not +#chan) */
|
* WALLCHOPS in 005 */
|
||||||
if (statusmsg == NULL && *target != '@')
|
|
||||||
return target;
|
|
||||||
|
|
||||||
if (statusmsg == NULL)
|
if (statusmsg == NULL)
|
||||||
statusmsg = "@+";
|
statusmsg = "@";
|
||||||
|
|
||||||
/* Strip the leading statusmsg prefixes */
|
/* Strip the leading statusmsg prefixes */
|
||||||
while (strchr(statusmsg, *target) != NULL) {
|
while (strchr(statusmsg, *target) != NULL) {
|
||||||
|
@ -89,7 +89,9 @@ static int ischannel_func(SERVER_REC *server, const char *data)
|
|||||||
chantypes = "#&!+"; /* normal, local, secure, modeless */
|
chantypes = "#&!+"; /* normal, local, secure, modeless */
|
||||||
|
|
||||||
statusmsg = g_hash_table_lookup(irc_server->isupport, "statusmsg");
|
statusmsg = g_hash_table_lookup(irc_server->isupport, "statusmsg");
|
||||||
if (statusmsg != NULL)
|
if (statusmsg == NULL)
|
||||||
|
statusmsg = "@";
|
||||||
|
|
||||||
data += strspn(data, statusmsg);
|
data += strspn(data, statusmsg);
|
||||||
|
|
||||||
/* strchr(3) considers the trailing NUL as part of the string, make sure
|
/* strchr(3) considers the trailing NUL as part of the string, make sure
|
||||||
|
Loading…
Reference in New Issue
Block a user