summaryrefslogtreecommitdiff
path: root/message.c
diff options
context:
space:
mode:
authorLuke Bratch <luke@bratch.co.uk>2020-10-21 22:07:17 +0100
committerLuke Bratch <luke@bratch.co.uk>2020-10-21 22:07:17 +0100
commit6737c2ec911afd4a62d2961432ea8c784885e641 (patch)
tree7ef8e58c82bd29f286efb02c40ab8eeb60c3ffa0 /message.c
parent5dd40bf9003063fd54071948654bc5a5640de282 (diff)
Correct detection of changed nick for updating existing clients when reconnecting to server after a timeout.
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 2c6eb16..6ee959a 100644
--- a/message.c
+++ b/message.c
@@ -108,7 +108,7 @@ int processservermessage(SSL *server_ssl, char *str, struct client *clients, int
// If this is a reconnection, JOIN existing channels and catch clients up again
if (ircdstate->reconnecting) {
// First tell clients if our nick changed
- if (!strcmp(ircdstate->ircnick, ircdstate->oldnick)) {
+ if (strcmp(ircdstate->ircnick, ircdstate->oldnick)) {
debugprint(DEBUG_SOME, "Telling clients about nick change.\n");
char nickmsg[MAXDATASIZE];
snprintf(nickmsg, MAXDATASIZE, ":%s NICK :%s", ircdstate->oldnick, ircdstate->ircnick);