From 6faf3c2a45f466e1a32bfd14b87c7f304dd2e021 Mon Sep 17 00:00:00 2001 From: Sam Dodrill Date: Fri, 17 Jan 2014 05:07:41 -0800 Subject: [PATCH] src/client: Remove TS5 logic in the link protocol --- src/client.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/client.c b/src/client.c index f763b27..cf95175 100644 --- a/src/client.c +++ b/src/client.c @@ -972,14 +972,14 @@ recurse_send_quits(struct Client *client_p, struct Client *source_p, RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->users.head) { target_p = ptr->data; - sendto_one(to, ":%s QUIT :%s", target_p->name, comment1); + sendto_one(to, ":%s QUIT :%s", target_p->id, comment1); } RB_DLINK_FOREACH_SAFE(ptr, ptr_next, source_p->serv->servers.head) { target_p = ptr->data; recurse_send_quits(client_p, target_p, to, comment1, comment); } - sendto_one(to, "SQUIT %s :%s", source_p->name, comment); + sendto_one(to, "SQUIT %s :%s", source_p->id, comment); } }