diff options
author | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 14:50:36 +0200 |
---|---|---|
committer | Berke Viktor <bviktor@hexchat.org> | 2012-10-22 14:50:36 +0200 |
commit | 545b7dc6ffc0aff9f2ca2cb4ba10b69e25134a03 (patch) | |
tree | cfb96af58bab32dca37205add2a5be36dd2c23f2 /src/common/proto-irc.c | |
parent | 5c49b45a6deb80d604fd6114bb110358b6ee0687 (diff) |
Variable cleanup for irc_*
Diffstat (limited to 'src/common/proto-irc.c')
-rw-r--r-- | src/common/proto-irc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c index 02df18e0..10c81157 100644 --- a/src/common/proto-irc.c +++ b/src/common/proto-irc.c @@ -456,7 +456,7 @@ process_numeric (session * sess, int n, session *whois_sess = serv->server_session; /* unless this setting is on */ - if (prefs.irc_whois_front) + if (prefs.hex_irc_whois_front) whois_sess = serv->front_session; switch (n) @@ -825,7 +825,7 @@ process_numeric (session * sess, int n, case 372: /* motd text */ case 375: /* motd start */ - if (!prefs.skipmotd || serv->motd_skipped) + if (!prefs.hex_irc_skip_motd || serv->motd_skipped) EMIT_SIGNAL (XP_TE_MOTD, serv->server_session, text, NULL, NULL, NULL, 0); break; |