diff options
author | Valentin Batz <senneth@irssi.org> | 2004-09-16 09:00:42 +0000 |
---|---|---|
committer | senneth <senneth@dbcabf3a-b0e7-0310-adc4-f8d773084564> | 2004-09-16 09:00:42 +0000 |
commit | c9d21e78072066f705950676673da2e9eb48d55a (patch) | |
tree | d8125f830c367a764d16c5c16f105b9669fbfa97 | |
parent | 0a4b38295dc133f8724b698c89e41c031f14402f (diff) | |
download | irssi-c9d21e78072066f705950676673da2e9eb48d55a.zip |
Fixed /WHOWAS bug, where "event 312" was not printed right, Recent WHOIS changes broke it.
git-svn-id: http://svn.irssi.org/repos/irssi/trunk@3301 dbcabf3a-b0e7-0310-adc4-f8d773084564
-rw-r--r-- | src/fe-common/irc/fe-whois.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/fe-common/irc/fe-whois.c b/src/fe-common/irc/fe-whois.c index e539e3c1..68c7be1e 100644 --- a/src/fe-common/irc/fe-whois.c +++ b/src/fe-common/irc/fe-whois.c @@ -367,6 +367,7 @@ void fe_whois_init(void) settings_add_bool("lookandfeel", "whois_hide_safe_channel_id", TRUE); signal_add("event 311", (SIGNAL_FUNC) event_whois); + signal_add("event 312", (SIGNAL_FUNC) event_whois_server); signal_add("whois away", (SIGNAL_FUNC) event_whois_away); signal_add("whois oper", (SIGNAL_FUNC) event_whois_oper); signal_add("whowas away", (SIGNAL_FUNC) event_whois_away); @@ -379,6 +380,7 @@ void fe_whois_init(void) void fe_whois_deinit(void) { signal_remove("event 311", (SIGNAL_FUNC) event_whois); + signal_remove("event 312", (SIGNAL_FUNC) event_whois_server); signal_remove("whois away", (SIGNAL_FUNC) event_whois_away); signal_remove("whois oper", (SIGNAL_FUNC) event_whois_oper); signal_remove("whowas away", (SIGNAL_FUNC) event_whois_away); |