X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_user.cpp;h=dc224db76d88ba2e94fab58a540c804ddd7e78a0;hb=0306a4231e85baeb5029ef2b9b36d0b5d241d147;hp=1a0e392c6ad2eb24caf5bb4bb0ab60e9bb82923a;hpb=ffdd357e073819fd617af45c86c2499597380d50;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp index 1a0e392c6..dc224db76 100644 --- a/src/cmd_user.cpp +++ b/src/cmd_user.cpp @@ -11,13 +11,12 @@ * --------------------------------------------------- */ +#include "inspircd.h" #include "configreader.h" #include "users.h" #include "commands/cmd_user.h" - - -extern "C" command_t* init_command(InspIRCd* Instance) +extern "C" DllExport command_t* init_command(InspIRCd* Instance) { return new cmd_user(Instance); } @@ -29,9 +28,11 @@ CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user) { if (!ServerInstance->IsIdent(parameters[0])) { - // This kinda Sucks, According to the RFC thou, its either this, - // or "You have already registered" :p -- Craig - user->WriteServ("461 %s USER :Not enough parameters",user->nick); + /* + * RFC says we must use this numeric, so we do. Let's make it a little more nub friendly though. :) + * -- Craig, and then w00t. + */ + user->WriteServ("461 %s USER :Your username is not valid",user->nick); return CMD_FAILURE; } else