From f2acdbc3820f0f4f5ef76a0a64e73d2a320df91f Mon Sep 17 00:00:00 2001 From: peavey Date: Mon, 16 Jul 2007 17:30:04 +0000 Subject: OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7456 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_squit.cpp | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) (limited to 'src/cmd_squit.cpp') diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp index d6fe63c94..57105109b 100644 --- a/src/cmd_squit.cpp +++ b/src/cmd_squit.cpp @@ -1 +1,32 @@ -/* +------------------------------------+ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * * InspIRCd: (C) 2002-2007 InspIRCd Development Team * See: http://www.inspircd.org/wiki/index.php/Credits * * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ #include "inspircd.h" #include "users.h" #include "commands/cmd_squit.h" /* * This is handled by the server linking module, if necessary. Do not remove this stub. */ extern "C" DllExport command_t* init_command(InspIRCd* Instance) { return new cmd_squit(Instance); } CmdResult cmd_squit::Handle (const char** parameters, int pcnt, userrec *user) { user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick); return CMD_FAILURE; } \ No newline at end of file +/* +------------------------------------+ + * | Inspire Internet Relay Chat Daemon | + * +------------------------------------+ + * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits + * + * This program is free but copyrighted software; see + * the file COPYING for details. + * + * --------------------------------------------------- + */ + +#include "inspircd.h" +#include "users.h" +#include "commands/cmd_squit.h" + +/* + * This is handled by the server linking module, if necessary. Do not remove this stub. + */ + + +extern "C" DllExport command_t* init_command(InspIRCd* Instance) +{ + return new cmd_squit(Instance); +} + +CmdResult cmd_squit::Handle (const char** parameters, int pcnt, userrec *user) +{ + user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick); + return CMD_FAILURE; +} -- cgit v1.2.3