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_pass.cpp | |
| parent | Comment all the new stuff (diff) | |
| download | inspircd++-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/cmd_pass.cpp')
| -rw-r--r-- | src/cmd_pass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_pass.cpp b/src/cmd_pass.cpp index 1b972efeb..7abb7f2ab 100644 --- a/src/cmd_pass.cpp +++ b/src/cmd_pass.cpp @@ -24,7 +24,7 @@ void cmd_pass::Handle (const char** parameters, int pcnt, userrec *user) // Check to make sure they havnt registered -- Fix by FCS if (user->registered == REG_ALL) { - WriteServ(user->fd,"462 %s :You may not reregister",user->nick); + user->WriteServ("462 %s :You may not reregister",user->nick); return; } ConnectClass a = GetClass(user); |
