summaryrefslogtreecommitdiff
path: root/message.c
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2024-11-09 23:56:15 +0000
committerLuke Bratch <luke@bratch.co.uk>2024-11-09 23:56:15 +0000
commitfeeb625db4837f3f91a722cd7866ce7da253d593 (patch)
treee422d80b4104110a32e9106c15532ff8287afadc /message.c
parentf55160af3f25fff17d3af4dde50a606c2c78f79b (diff)
Send NOTICE alert about failed authentication before disconnection alert.
Diffstat (limited to 'message.c')
-rw-r--r--message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/message.c b/message.c
index 7e5497e..b574586 100644
--- a/message.c
+++ b/message.c
@@ -925,7 +925,6 @@ int processclientmessage(SSL *server_ssl, char *str, struct client *clients, int
char remoteip[INET6_ADDRSTRLEN];
strncpy(remoteip, clients[clientindex].remoteip, INET6_ADDRSTRLEN);
debugprint(DEBUG_SOME, "Password rejected, disconnecting client %s with fd %d.\n", remoteip, sourcefd);
- disconnectclient(sourcefd, clients, ircdstate, settings, clientcodes);
// Alert other clients about the failed authentication (if enabled)
if (settings->alertauthfail) {
char alertmsg[MAXDATASIZE];
@@ -937,6 +936,7 @@ int processclientmessage(SSL *server_ssl, char *str, struct client *clients, int
// "except" 0 since we trust this message
sendtoallclients(clients, alertmsg, 0, settings);
}
+ disconnectclient(sourcefd, clients, ircdstate, settings, clientcodes);
}
return 1;