From: Jilles Tjoelker Date: Wed, 24 Feb 2010 22:28:27 +0000 (+0100) Subject: Use FLAGS_SENTUSER when checking whether to register when ping cookie is received. X-Git-Url: https://jfr.im/git/solanum.git/commitdiff_plain/3102dbdc4ffc7063fee12e53c0a4aabafbddc648 Use FLAGS_SENTUSER when checking whether to register when ping cookie is received. --- diff --git a/modules/m_pong.c b/modules/m_pong.c index 3d83249b..831f2c86 100644 --- a/modules/m_pong.c +++ b/modules/m_pong.c @@ -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)