diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-09 15:43:56 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2014-01-09 15:43:56 +0000 |
commit | f39a9d8d61f18df6f436de360ef6cd6a51ff1129 (patch) | |
tree | b53e6d526937d4a2cf87742494fdc8d0f9251a4d /src | |
parent | 379e57a91877830ebede66935304d3edb701f5ea (diff) |
- send.c:sendto_anywhere(): fix to previous commit. 'to' can be a remote
connection not connected to our server
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2792 82007160-df01-0410-b94d-b575c5fd34c7
Diffstat (limited to 'src')
-rw-r--r-- | src/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -856,7 +856,7 @@ sendto_anywhere(struct Client *to, struct Client *from, char buffer[IRCD_BUFSIZE]; int len = 0; - if (IsDead(to)) + if (IsDead(to->from)) return; if (MyClient(to)) |