diff options
| author | 2006-08-08 18:59:13 +0000 | |
|---|---|---|
| committer | 2006-08-08 18:59:13 +0000 | |
| commit | fea1a27cb96a114f698eedcf90401b78406108fb (patch) | |
| tree | 194649decb5d88184149307571bba6873537853d /src/cmd_links.cpp | |
| parent | Comment all the new stuff (diff) | |
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/cmd_links.cpp')
| -rw-r--r-- | src/cmd_links.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cmd_links.cpp b/src/cmd_links.cpp index 57df3b4fb..633318a14 100644 --- a/src/cmd_links.cpp +++ b/src/cmd_links.cpp @@ -26,6 +26,6 @@ extern ServerConfig* Config; void cmd_links::Handle (const char** parameters, int pcnt, userrec *user) { - WriteServ(user->fd,"364 %s %s %s :0 %s",user->nick,Config->ServerName,Config->ServerName,Config->ServerDesc); - WriteServ(user->fd,"365 %s * :End of /LINKS list.",user->nick); + user->WriteServ("364 %s %s %s :0 %s",user->nick,Config->ServerName,Config->ServerName,Config->ServerDesc); + user->WriteServ("365 %s * :End of /LINKS list.",user->nick); } |
