diff options
| author | 2009-09-02 15:37:46 +0000 | |
|---|---|---|
| committer | 2009-09-02 15:37:46 +0000 | |
| commit | b1002b7df55f1aec5bfce48ecd07d6d326174c95 (patch) | |
| tree | 51ff3df20ce75f2829a636702952188690f5c78a /src/modules/m_spanningtree/netburst.cpp | |
| parent | Add 1201 protocol compatability for SAVE (diff) | |
| download | inspircd++-b1002b7df55f1aec5bfce48ecd07d6d326174c95.tar.gz inspircd++-b1002b7df55f1aec5bfce48ecd07d6d326174c95.tar.bz2 inspircd++-b1002b7df55f1aec5bfce48ecd07d6d326174c95.zip | |
Add away timestamp to the AWAY message sent server-server
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11664 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_spanningtree/netburst.cpp')
| -rw-r--r-- | src/modules/m_spanningtree/netburst.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_spanningtree/netburst.cpp b/src/modules/m_spanningtree/netburst.cpp index 93e698dd4..951d019ef 100644 --- a/src/modules/m_spanningtree/netburst.cpp +++ b/src/modules/m_spanningtree/netburst.cpp @@ -254,7 +254,7 @@ void TreeSocket::SendUsers(TreeServer* Current) } if (IS_AWAY(u->second)) { - snprintf(data,MAXBUF,":%s AWAY :%s", u->second->uuid.c_str(), u->second->awaymsg.c_str()); + snprintf(data,MAXBUF,":%s AWAY %ld :%s", u->second->uuid.c_str(), (long)u->second->awaytime, u->second->awaymsg.c_str()); this->WriteLine(data); } } |
