Fix various compiler warnings.
This commit is contained in:
parent
7bf8ae67cc
commit
7c880acbfe
|
@ -187,7 +187,7 @@ ms_ban(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
||||||
{
|
{
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"Ignoring global %d min. %s from %s%s%s for [%s%s%s]: too few non-wildcard characters",
|
"Ignoring global %d min. %s from %s%s%s for [%s%s%s]: too few non-wildcard characters",
|
||||||
(hold - rb_current_time()) / 60,
|
(int)((hold - rb_current_time()) / 60),
|
||||||
stype,
|
stype,
|
||||||
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
||||||
strcmp(parv[7], "*") ? " on behalf of " : "",
|
strcmp(parv[7], "*") ? " on behalf of " : "",
|
||||||
|
@ -210,7 +210,7 @@ ms_ban(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
||||||
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
sendto_realops_snomask(SNO_GENERAL, L_ALL,
|
||||||
"%s added global %d min. %s%s%s for [%s%s%s] [%s]",
|
"%s added global %d min. %s%s%s for [%s%s%s] [%s]",
|
||||||
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
||||||
(hold - rb_current_time()) / 60,
|
(int)((hold - rb_current_time()) / 60),
|
||||||
stype,
|
stype,
|
||||||
strcmp(parv[7], "*") ? " from " : "",
|
strcmp(parv[7], "*") ? " from " : "",
|
||||||
strcmp(parv[7], "*") ? parv[7] : "",
|
strcmp(parv[7], "*") ? parv[7] : "",
|
||||||
|
@ -220,7 +220,7 @@ ms_ban(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
||||||
parv[parc - 1]);
|
parv[parc - 1]);
|
||||||
ilog(L_KLINE, "%s %s %d %s%s%s %s", parv[1],
|
ilog(L_KLINE, "%s %s %d %s%s%s %s", parv[1],
|
||||||
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
IsServer(source_p) ? source_p->name : get_oper_name(source_p),
|
||||||
(hold - rb_current_time()) / 60,
|
(int)((hold - rb_current_time()) / 60),
|
||||||
aconf->user ? aconf->user : "",
|
aconf->user ? aconf->user : "",
|
||||||
aconf->user ? " " : "",
|
aconf->user ? " " : "",
|
||||||
aconf->host,
|
aconf->host,
|
||||||
|
|
|
@ -297,7 +297,7 @@ handle_remote_kline(struct Client *source_p, int tkline_time,
|
||||||
":Please include at least %d non-wildcard "
|
":Please include at least %d non-wildcard "
|
||||||
"characters with the user@host",
|
"characters with the user@host",
|
||||||
ConfigFileEntry.min_nonwildcard);
|
ConfigFileEntry.min_nonwildcard);
|
||||||
return 0;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(already_placed_kline(source_p, user, host, tkline_time))
|
if(already_placed_kline(source_p, user, host, tkline_time))
|
||||||
|
|
|
@ -1330,7 +1330,7 @@ get_user_ban_reason(struct ConfItem *aconf)
|
||||||
rb_snprintf(reasonbuf, sizeof reasonbuf,
|
rb_snprintf(reasonbuf, sizeof reasonbuf,
|
||||||
"Temporary %c-line %d min. - ",
|
"Temporary %c-line %d min. - ",
|
||||||
aconf->status == CONF_DLINE ? 'D' : 'K',
|
aconf->status == CONF_DLINE ? 'D' : 'K',
|
||||||
(aconf->hold - aconf->created) / 60);
|
(int)((aconf->hold - aconf->created) / 60));
|
||||||
else
|
else
|
||||||
reasonbuf[0] = '\0';
|
reasonbuf[0] = '\0';
|
||||||
if (aconf->passwd)
|
if (aconf->passwd)
|
||||||
|
|
Loading…
Reference in New Issue