diff options
Diffstat (limited to 'src/common/outbound.c')
-rw-r--r-- | src/common/outbound.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index e6113488..95c8a354 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -575,8 +575,13 @@ cmd_unban (struct session *sess, char *tbuf, char *word[], char *word_eol[]) static int cmd_chanopt (struct session *sess, char *tbuf, char *word[], char *word_eol[]) { + int ret; + /* chanopt.c */ - return chanopt_command (sess, tbuf, word, word_eol); + ret = chanopt_command (sess, tbuf, word, word_eol); + chanopt_save_all (); + + return ret; } static int |