From 26e9dd93add8c32f9a7e65c3e9056732743a4b2a Mon Sep 17 00:00:00 2001 From: Jilles Tjoelker Date: Tue, 11 Jan 2011 00:26:15 +0100 Subject: [PATCH] Remove nickTS from extended-join. --- src/channel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/channel.c b/src/channel.c index bb49f1d57..2496f67b0 100644 --- a/src/channel.c +++ b/src/channel.c @@ -139,10 +139,10 @@ send_channel_join(struct Channel *chptr, struct Client *client_p) sendto_channel_local_with_capability(ALL_MEMBERS, NOCAPS, CLICAP_EXTENDED_JOIN, chptr, ":%s!%s@%s JOIN %s", client_p->name, client_p->username, client_p->host, chptr->chname); - sendto_channel_local_with_capability(ALL_MEMBERS, CLICAP_EXTENDED_JOIN, NOCAPS, chptr, ":%s!%s@%s JOIN %s %s %ld :%s", + sendto_channel_local_with_capability(ALL_MEMBERS, CLICAP_EXTENDED_JOIN, NOCAPS, chptr, ":%s!%s@%s JOIN %s %s :%s", client_p->name, client_p->username, client_p->host, chptr->chname, EmptyString(client_p->user->suser) ? "*" : client_p->user->suser, - client_p->tsinfo, client_p->info); + client_p->info); } /* find_channel_membership()