Use FLAGS_SENTUSER when checking whether to register when ping cookie is received.

This commit is contained in:
Jilles Tjoelker 2010-02-24 23:28:27 +01:00
parent 0a9c5766e7
commit ba6e142043
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ mr_pong(struct Client *client_p, struct Client *source_p, int parc, const char *
{
if(parc == 2 && !EmptyString(parv[1]))
{
if(ConfigFileEntry.ping_cookie && source_p->user && source_p->name[0])
if(ConfigFileEntry.ping_cookie && source_p->flags & FLAGS_SENTUSER && source_p->name[0])
{
unsigned long incoming_ping = strtoul(parv[1], NULL, 16);
if(incoming_ping)