# HG changeset patch # User Matti Hamalainen # Date 1288731209 -7200 # Node ID 303db1141147f89bc7356da4af40e0cfd40b4fe4 # Parent db5e7a1f1eb3365e618140f7bc4d6f51a5d761c2 Oops, should be th_cfg_add_bool() instead of th_cfg_add_boolean() diff -r db5e7a1f1eb3 -r 303db1141147 nnchat.c --- a/nnchat.c Tue Nov 02 22:52:22 2010 +0200 +++ b/nnchat.c Tue Nov 02 22:53:29 2010 +0200 @@ -841,7 +841,7 @@ th_cfg_add_hexvalue(&tmpcfg, "color", &optUserColor, optUserColor); th_cfg_add_comment(&tmpcfg, "Default setting of ignore mode"); - th_cfg_add_boolean(&tmpcfg, "ignore", &setIgnoreMode, setIgnoreMode); + th_cfg_add_bool(&tmpcfg, "ignore", &setIgnoreMode, setIgnoreMode); th_cfg_add_comment(&tmpcfg, "People to be ignored when ignore mode is enabled"); th_cfg_add_string_list(&tmpcfg, "ignore_list", &nnIgnoreList); th_cfg_add_section(&cfg, "general", tmpcfg);