Merge pull request #31 from lyska/m_post-snomask

modules/m_post: Fix s2s message framing issue
This commit is contained in:
Kyle Johnson 2013-11-12 19:25:02 -08:00
commit d64bf25497
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ mr_dumb_proxy(struct Client *client_p, struct Client *source_p, int parc, const
"HTTP Proxy disconnected: [%s@%s]",
client_p->username, client_p->host);
sendto_server(NULL, NULL, CAP_TS6, NOCAPS,
":%s ENCAP * SNOTE r :%s HTTP Proxy disconnected: [%s@%s]",
me.id, source_p->name, client_p->username, client_p->host);
":%s ENCAP * SNOTE r :%s :HTTP Proxy disconnected: [%s@%s]",
me.id, me.name, client_p->username, client_p->host);
exit_client(client_p, source_p, source_p, "Client Exit");
return 0;