From: Maxim Mamontov <faust@gts.dp.ua>
Date: Thu, 7 Apr 2011 15:46:54 +0000 (+0300)
Subject: Fix rscriptd compilation errors
X-Git-Tag: 2.407-rc3~30
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/bb0ffb6084b51b95a8cbce53ecfea95b1e71982e?ds=inline

Fix rscriptd compilation errors
---

diff --git a/projects/rscriptd/listener.cpp b/projects/rscriptd/listener.cpp
index 814eb1d8..e6bd4d77 100644
--- a/projects/rscriptd/listener.cpp
+++ b/projects/rscriptd/listener.cpp
@@ -33,10 +33,10 @@
 #include <sstream>
 #include <algorithm>
 
+#include "stg/script_executer.h"
+#include "stg/stg_locker.h"
+#include "stg/common.h"
 #include "listener.h"
-#include "script_executer.h"
-#include "stg_locker.h"
-#include "common.h"
 
 void InitEncrypt(BLOWFISH_CTX * ctx, const std::string & password);
 void Decrypt(BLOWFISH_CTX * ctx, char * dst, const char * src, int len8);
diff --git a/projects/rscriptd/listener.h b/projects/rscriptd/listener.h
index abc03f6f..16c49219 100644
--- a/projects/rscriptd/listener.h
+++ b/projects/rscriptd/listener.h
@@ -26,10 +26,10 @@
 #include <list>
 #include <functional>
 
-#include "os_int.h"
-#include "blowfish.h"
-#include "rs_packets.h"
-#include "stg_logger.h"
+#include "stg/os_int.h"
+#include "stg/blowfish.h"
+#include "stg/rs_packets.h"
+#include "stg/stg_logger.h"
 
 struct UserData
 {
diff --git a/projects/rscriptd/main.cpp b/projects/rscriptd/main.cpp
index 7dc16564..2f5f0baa 100644
--- a/projects/rscriptd/main.cpp
+++ b/projects/rscriptd/main.cpp
@@ -38,13 +38,13 @@
 #include <csignal>
 #include <set>
 
-#include "common.h"
-#include "stg_logger.h"
-#include "script_executer.h"
-#include "conffiles.h"
+#include "stg/common.h"
+#include "stg/stg_logger.h"
+#include "stg/script_executer.h"
+#include "stg/conffiles.h"
+#include "stg/version.h"
 #include "listener.h"
 #include "pidfile.h"
-#include "version.h"
 
 using namespace std;