fix hostserv timer problem

This commit is contained in:
Mark 2003-12-07 21:36:59 +00:00
parent dc309eb19e
commit eb32b72b98
2 changed files with 2 additions and 2 deletions

2
dl.c
View file

@ -169,7 +169,7 @@ add_mod_timer (char *func_name, char *timer_name, char *mod_name, int interval)
SET_SEGV_LOCATION();
if (dlsym ((int *) get_dl_handle (mod_name), func_name) == NULL) {
nlog (LOG_WARNING, LOG_CORE, "%s:, Timer Function %s doesn't exist", mod_name, func_name);
nlog (LOG_WARNING, LOG_CORE, "%s: Timer %s Function %s doesn't exist", mod_name, timer_name, func_name);
return NS_FAILURE;
}
mod_tmr = new_timer (timer_name);

View file

@ -103,7 +103,7 @@ static void hs_delban(User * u, char *ban);
static int new_m_version(char *origin, char **av, int ac);
static void SaveBans(void);
static void hsdat(char *nick, char *host, char *vhost, char *pass, char *who);
static void CleanupHosts(void);
void CleanupHosts(void);
static void LoadHosts(void);
static void LoadConfig(void);