]> git.netwichtig.de Git - user/henk/code/inspircd.git/commitdiff
Changed first of files to match new location of headers
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 20 Apr 2006 18:48:52 +0000 (18:48 +0000)
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>
Thu, 20 Apr 2006 18:48:52 +0000 (18:48 +0000)
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3897 e03df62e-2008-0410-955e-edbf42e46eb7

12 files changed:
src/cmd_away.cpp
src/cmd_commands.cpp
src/cmd_connect.cpp
src/cmd_die.cpp
src/cmd_eline.cpp
src/cmd_gline.cpp
src/cmd_info.cpp
src/cmd_invite.cpp
src/cmd_ison.cpp
src/cmd_join.cpp
src/cmd_kick.cpp
src/cmd_kill.cpp

index 732cf9d91f9dd9e5274b6b9accb6aa02ada7292d..f882904c20a3d92cbd287b3758cc824ad7ecde87 100644 (file)
@@ -21,7 +21,7 @@
 #include "modules.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_away.h"
+#include "commands/cmd_away.h"
 
 extern ServerConfig* Config;
 extern InspIRCd* ServerInstance;
index 5fd9767343adad899f0e2ea7ec403fa14ec7c12d..57f1422074079d4103af4928519fe2a0e6f3b469 100644 (file)
@@ -18,7 +18,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_commands.h"
+#include "commands/cmd_commands.h"
 
 extern InspIRCd* ServerInstance;
 
index 501017c3576ea2396224cb406abe0bae161cfd0d..978478e3a507cecfac631476e438ce539e28f8d0 100644 (file)
@@ -17,7 +17,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_connect.h"
+#include "commands/cmd_connect.h"
 
 /*
  * This is handled by the server linking module, if necessary. Do not remove this stub.
index a8d3f14e6ea9bd25c7c0978f64addcc42b97b376..c5514c067968388f458e32dd464fb6fdf759d75e 100644 (file)
@@ -21,7 +21,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_die.h"
+#include "commands/cmd_die.h"
 
 extern ServerConfig* Config;
 extern std::vector<userrec*> all_opers;
index e25f2b7fe66316e11ffd44d7488078306f1eb739..3a77c2b54e3c6d5e4004fbc8d762a82f7e4b0463 100644 (file)
@@ -22,7 +22,7 @@
 #include "commands.h"
 #include "xline.h"
 #include "helperfuncs.h"
-#include "cmd_eline.h"
+#include "commands/cmd_eline.h"
 
 extern int MODCOUNT;
 extern ServerConfig* Config;
index 0d01c0875896b826002f6b2b5d166eac1af960a5..57aa56032c9d5e584a1dcb4789a2eab27af52929 100644 (file)
@@ -22,7 +22,7 @@
 #include "commands.h"
 #include "xline.h"
 #include "helperfuncs.h"
-#include "cmd_eline.h"
+#include "commands/cmd_eline.h"
 
 extern ServerConfig* Config;
 extern int MODCOUNT;
index 1f3e3182f733bee8bb8fb2272cd7b452d2951efe..66e02e0edf6ac557708a461c12f295ffd34a2262 100644 (file)
@@ -19,7 +19,7 @@
 #include "modules.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_info.h"
+#include "commands/cmd_info.h"
 
 extern ServerConfig* Config;
 extern int MODCOUNT;
index 8baeb30b093756c237dc91f749c1fe047ccaa9b4..0eaafe2117fbed9addb1643900c5b74f9cc78e5a 100644 (file)
@@ -21,7 +21,7 @@
 #include "commands.h"
 #include "helperfuncs.h"
 #include "message.h"
-#include "cmd_invite.h"
+#include "commands/cmd_invite.h"
 
 extern ServerConfig* Config;
 extern int MODCOUNT;
index 540a14ea44c9ccfcddcdd17608d99412b2b634a1..4c840c748715b9b092ac55063315f52753f0bd13 100644 (file)
@@ -19,7 +19,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_ison.h"
+#include "commands/cmd_ison.h"
 
 void cmd_ison::Handle (char **parameters, int pcnt, userrec *user)
 {
index a71e4d81c9f294ec7c3f5e01c4b275aafc09d42b..17b14fdff4aa42056d9374564c388ef1cc6c867f 100644 (file)
@@ -18,7 +18,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_join.h"
+#include "commands/cmd_join.h"
 
 extern InspIRCd* ServerInstance;
 
index ac96956b10833dcafc9325224b42890c44ef48c2..29e0860e05a3b803141b616465783cbdd704592f 100644 (file)
@@ -18,7 +18,7 @@
 #include "users.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_kick.h"
+#include "commands/cmd_kick.h"
 
 void cmd_kick::Handle (char **parameters, int pcnt, userrec *user)
 {
index 44594a0e14872906d14c478be2166b9169a54f08..82bba06e390c23db06bdea49b972a586c85bb76d 100644 (file)
@@ -22,7 +22,7 @@
 #include "modules.h"
 #include "commands.h"
 #include "helperfuncs.h"
-#include "cmd_kill.h"
+#include "commands/cmd_kill.h"
 
 extern ServerConfig* Config;
 extern int MODCOUNT;