summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-09 15:43:56 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2014-01-09 15:43:56 +0000
commitf39a9d8d61f18df6f436de360ef6cd6a51ff1129 (patch)
treeb53e6d526937d4a2cf87742494fdc8d0f9251a4d /src
parent379e57a91877830ebede66935304d3edb701f5ea (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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.c b/src/send.c
index 7e6f575..5cae833 100644
--- a/src/send.c
+++ b/src/send.c
@@ -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))