Switched on using cache_user_motd(); for motd update on rehash

This commit is contained in:
Valery Yatsko 2008-04-20 07:24:50 +04:00
parent 95d7b51fc3
commit a822ef295a
2 changed files with 2 additions and 4 deletions

View File

@ -88,8 +88,7 @@ rehash_motd(struct Client *source_p)
"%s is forcing re-reading of MOTD file",
get_oper_name(source_p));
free_cachefile(user_motd);
user_motd = cache_file(MPATH, "ircd.motd", 0);
cache_user_motd();
}
static void

View File

@ -314,8 +314,7 @@ check_rehash(void *unused)
{
sendto_realops_snomask(SNO_GENERAL, L_ALL,
"Got signal SIGUSR1, reloading ircd motd file");
free_cachefile(user_motd);
user_motd = cache_file(MPATH, "ircd.motd", 0);
cache_user_motd();
doremotd = 0;
}
}