aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_vhost.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-08-08 18:59:13 +0000
committerGravatar brain2006-08-08 18:59:13 +0000
commitfea1a27cb96a114f698eedcf90401b78406108fb (patch)
tree194649decb5d88184149307571bba6873537853d /src/modules/m_vhost.cpp
parentComment all the new stuff (diff)
downloadinspircd++-fea1a27cb96a114f698eedcf90401b78406108fb.tar.gz
inspircd++-fea1a27cb96a114f698eedcf90401b78406108fb.tar.bz2
inspircd++-fea1a27cb96a114f698eedcf90401b78406108fb.zip
WHEEEEE!!!!!
All of: Write(), WriteTo(), WriteFrom(), WriteServ() are now methods of userrec. Write_NoFormat(), WriteTo_NoFormat(), WriteFrom_NoFormat(), WriteServ_NoFormat() are now std::string-taking overloaded methods of the functions above All modules updated to use new syntax, my fingers hurt :( git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4798 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_vhost.cpp')
-rw-r--r--src/modules/m_vhost.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_vhost.cpp b/src/modules/m_vhost.cpp
index a7ce8fd4a..71fadf2f9 100644
--- a/src/modules/m_vhost.cpp
+++ b/src/modules/m_vhost.cpp
@@ -47,13 +47,13 @@ class cmd_vhost : public command_t
{
if (mask != "")
{
- Srv->SendServ(user->fd,"NOTICE "+std::string(user->nick)+" :Setting your VHost: " + mask);
+ user->WriteServ("NOTICE "+std::string(user->nick)+" :Setting your VHost: " + mask);
Srv->ChangeHost(user,mask);
return;
}
}
}
- Srv->SendServ(user->fd,"NOTICE "+std::string(user->nick)+" :Invalid username or password.");
+ user->WriteServ("NOTICE "+std::string(user->nick)+" :Invalid username or password.");
}
};