Add two missing colons for sendto_one_notice().

This commit is contained in:
Jilles Tjoelker 2008-01-06 00:12:51 +01:00
parent 93d880f987
commit d1264ac892
2 changed files with 2 additions and 2 deletions

View File

@ -263,7 +263,7 @@ stats_delay(struct Client *source_p)
DICTIONARY_FOREACH(nd, &iter, nd_dict) DICTIONARY_FOREACH(nd, &iter, nd_dict)
{ {
sendto_one_notice(source_p, "Delaying: %s for %ld", sendto_one_notice(source_p, ":Delaying: %s for %ld",
nd->name, (long) nd->expire); nd->name, (long) nd->expire);
} }
} }

View File

@ -832,7 +832,7 @@ report_and_set_user_flags(struct Client *source_p, struct ConfItem *aconf)
if(IsConfExemptLimits(aconf)) if(IsConfExemptLimits(aconf))
{ {
SetExemptLimits(source_p); SetExemptLimits(source_p);
sendto_one_notice(source_p, "*** You are exempt from user limits. congrats."); sendto_one_notice(source_p, ":*** You are exempt from user limits. congrats.");
} }
if(IsConfExemptFlood(aconf)) if(IsConfExemptFlood(aconf))