X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_user.cpp;h=dc224db76d88ba2e94fab58a540c804ddd7e78a0;hb=cd7657bddc7a6dc2e7326077d173a874bf71f6bd;hp=bdae8612775d6126244bccacbfe36be3edfd24ce;hpb=0635391ceb38698a7052da0c3b599a86e255a87c;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_user.cpp b/src/cmd_user.cpp index bdae86127..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,6 +28,10 @@ CmdResult cmd_user::Handle (const char** parameters, int pcnt, userrec *user) { if (!ServerInstance->IsIdent(parameters[0])) { + /* + * 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; }