]> jfr.im git - irc/freenode/ircd-seven.git/commitdiff
Remove nickTS from extended-join.
authorJilles Tjoelker <redacted>
Mon, 10 Jan 2011 23:26:15 +0000 (00:26 +0100)
committerJilles Tjoelker <redacted>
Mon, 10 Jan 2011 23:26:15 +0000 (00:26 +0100)
src/channel.c

index bb49f1d57c6868f74401e7d2ac1abee849b2f22f..2496f67b0f16ad7519a834a7105cba44e702d923 100644 (file)
@@ -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()