summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-04 22:43:11 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-11-04 22:43:11 +0000
commit6f1b91fb149fc547c96a93b4dc421f4e0721cb5a (patch)
tree7723b6cd54296c6910850026e9d7a38665cac359 /src
parent198cc96a62319c569cbfa97f1d3e58b96c8fe850 (diff)
wtf at the line endings in this bag of spanners
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8535 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/modules/m_operflood.cpp90
1 files changed, 45 insertions, 45 deletions
diff --git a/src/modules/m_operflood.cpp b/src/modules/m_operflood.cpp
index 2d5694a70..ef09ebd27 100644
--- a/src/modules/m_operflood.cpp
+++ b/src/modules/m_operflood.cpp
@@ -1,47 +1,47 @@
-/* +------------------------------------+
- * | 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 "channels.h"
-#include "modules.h"
-
-/* $ModDesc: Removes flood limits from users upon opering up. */
-class ModuleOperFlood : public Module
-{
-public:
- ModuleOperFlood(InspIRCd * Me) : Module(Me) {}
-
- void Implements(char * List)
- {
- List[I_OnPostOper] = 1;
+/* +------------------------------------+
+ * | 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 "channels.h"
+#include "modules.h"
+
+/* $ModDesc: Removes flood limits from users upon opering up. */
+class ModuleOperFlood : public Module
+{
+public:
+ ModuleOperFlood(InspIRCd * Me) : Module(Me) {}
+
+ void Implements(char * List)
+ {
+ List[I_OnPostOper] = 1;
Implementation eventlist[] = { I_OnPostOper };
ServerInstance->Modules->Attach(eventlist, this, 1);
- }
-
- Version GetVersion()
- {
- return Version(1,1,0,1,VF_VENDOR,API_VERSION);
- }
-
- void OnPostOper(User* user, const std::string &opertype)
- {
- if(!IS_LOCAL(user))
- return;
-
- user->ExemptFromPenalty = true;
- user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick);
- }
-};
-
-MODULE_INIT(ModuleOperFlood)
+ }
+
+ Version GetVersion()
+ {
+ return Version(1,1,0,1,VF_VENDOR,API_VERSION);
+ }
+
+ void OnPostOper(User* user, const std::string &opertype)
+ {
+ if(!IS_LOCAL(user))
+ return;
+
+ user->ExemptFromPenalty = true;
+ user->WriteServ("NOTICE %s :*** You are now free from flood limits.", user->nick);
+ }
+};
+
+MODULE_INIT(ModuleOperFlood)