fix false positives when checking chanopts
This commit is contained in:
parent
07bc467d03
commit
6982bbfef9
|
@ -159,10 +159,10 @@ chanopt_command (session *sess, char *tbuf, char *word[], char *word_eol[])
|
||||||
gboolean
|
gboolean
|
||||||
chanopt_is_set (unsigned int global, guint8 per_chan_setting)
|
chanopt_is_set (unsigned int global, guint8 per_chan_setting)
|
||||||
{
|
{
|
||||||
if (per_chan_setting == SET_DEFAULT)
|
if (per_chan_setting == SET_ON || per_chan_setting == SET_OFF)
|
||||||
return global;
|
|
||||||
|
|
||||||
return per_chan_setting;
|
return per_chan_setting;
|
||||||
|
else
|
||||||
|
return global;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* === below is LOADING/SAVING stuff only === */
|
/* === below is LOADING/SAVING stuff only === */
|
||||||
|
|
Loading…
Reference in New Issue