m_away: Add missing return value.
This commit is contained in:
parent
2d537cae88
commit
9120d0efb0
1 changed files with 1 additions and 1 deletions
|
@ -101,7 +101,7 @@ m_away(struct Client *client_p, struct Client *source_p, int parc, const char *p
|
||||||
{
|
{
|
||||||
sendto_one(source_p, form_str(RPL_LOAD2HI),
|
sendto_one(source_p, form_str(RPL_LOAD2HI),
|
||||||
me.name, source_p->name, "AWAY");
|
me.name, source_p->name, "AWAY");
|
||||||
return;
|
return 0;
|
||||||
}
|
}
|
||||||
if(source_p->localClient->next_away < rb_current_time() -
|
if(source_p->localClient->next_away < rb_current_time() -
|
||||||
ConfigFileEntry.away_interval)
|
ConfigFileEntry.away_interval)
|
||||||
|
|
Loading…
Reference in a new issue