From e7c4cf63bcd473b72778e4501ee4af9254187bac Mon Sep 17 00:00:00 2001 From: Simon Arlott Date: Sat, 23 Apr 2016 15:41:27 +0100 Subject: [PATCH] authproc: set GOT_ID flag when an ident response is received --- ircd/authproc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ircd/authproc.c b/ircd/authproc.c index 80a1cf75..6328409f 100644 --- a/ircd/authproc.c +++ b/ircd/authproc.c @@ -461,6 +461,7 @@ authd_decide_client(struct Client *client_p, const char *ident, const char *host if(*ident != '*') { rb_strlcpy(client_p->username, ident, sizeof(client_p->username)); + SetGotId(client_p); ServerStats.is_asuc++; } else