summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-27 23:58:14 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-27 23:58:14 +0000
commitc989a5d7f2e0d5c18eae40b0b24859ef72ff38fb (patch)
treee6c78f3188b3aa2e4d3f64e342849c7aac0231f3 /src
parentd33d0fd990b216f64529bf2cd4f6804829a9f5c3 (diff)
Double nickchange
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1226 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 962badfb0..4b6024f10 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -833,7 +833,7 @@ void WriteCommon(userrec *u, char* text, ...)
{
char* o = (*ulist)[j];
userrec* otheruser = (userrec*)o;
- log(DEBUG,"WriteCommon: Sending to: %s",otheruser->nick);
+ log(DEBUG,"WriteCommon: Sending to: (%d)%s",otheruser->fd,otheruser->nick);
WriteFrom(otheruser->fd,u,"%s",textbuffer);
}
}