A missing colon to RPL_MAP recently split (#131)

This commit is contained in:
Eric Mertens 2021-03-16 17:51:42 -07:00 committed by GitHub
parent df4fead0f2
commit a03871c657
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -174,7 +174,7 @@ scache_send_missing(struct Client *source_p)
RB_RADIXTREE_FOREACH(scache_ptr, &iter, scache_tree)
{
if (!(scache_ptr->flags & SC_ONLINE) && scache_ptr->last_split > rb_current_time() - MISSING_TIMEOUT)
sendto_one_numeric(source_p, RPL_MAP, "** %s (recently split)",
sendto_one_numeric(source_p, RPL_MAP, ":** %s (recently split)",
scache_ptr->name);
}
}