X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/7e49d01c20546a73d268a77e2f3323a768dff674..0c52bc1a8952055cebfd190895c924ed2beefab8:/src/mod-webtv.c?ds=sidebyside diff --git a/src/mod-webtv.c b/src/mod-webtv.c index f5eddd6..a66c26e 100644 --- a/src/mod-webtv.c +++ b/src/mod-webtv.c @@ -5,7 +5,7 @@ * * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -403,7 +403,7 @@ webtv_init(void) WB_LOG = log_register_type("WebTV", "file:webtv.log"); conf_register_reload(webtv_conf_read); - reg_exit_func(webtv_cleanup); + reg_exit_func(webtv_cleanup, NULL); webtv_module = module_register("WebTV", WB_LOG, "mod-webtv.help", NULL); modcmd_register(webtv_module, "nick", cmd_nick, 1, 0, NULL); @@ -434,7 +434,7 @@ webtv_finalize(void) { if (str) { webtv = webtv_conf.bot; const char *modes = conf_get_data("modules/webtv/modes", RECDB_QSTRING); - webtv = AddService(str, modes ? modes : NULL, "WebTV IRC Service", NULL); + webtv = AddLocalUser(str, str, NULL, "WebTV IRC Service", modes); } else { log_module(WB_LOG, LOG_ERROR, "database_get_data for webtv_conf.bot failed!"); exit(1);