From: Maxim Mamontov <faust@gts.dp.ua>
Date: Thu, 7 Apr 2011 15:47:17 +0000 (+0300)
Subject: Fix sgauth compilation errors
X-Git-Tag: 2.407-rc3~29
X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/f48b5b729bb0a1bdf88c1eebdb7e754c4d6bac92

Fix sgauth compilation errors
---

diff --git a/projects/sgauth/main.cpp b/projects/sgauth/main.cpp
index b161a5f3..c78f18ed 100644
--- a/projects/sgauth/main.cpp
+++ b/projects/sgauth/main.cpp
@@ -35,8 +35,8 @@
 #include <iostream>
 #include <vector>
 
-#include "ia_auth_c.h"
-#include "common.h"
+#include "stg/ia_auth_c.h"
+#include "stg/common.h"
 #include "web.h"
 #include "settings_impl.h"
 
diff --git a/projects/sgauth/settings_impl.cpp b/projects/sgauth/settings_impl.cpp
index bcb56170..44088d1f 100644
--- a/projects/sgauth/settings_impl.cpp
+++ b/projects/sgauth/settings_impl.cpp
@@ -21,9 +21,9 @@
 #include <iostream>
 #include <cstring>
 
+#include "stg/common.h"
+#include "stg/conffiles.h"
 #include "settings_impl.h"
-#include "common.h"
-#include "conffiles.h"
 
 SETTINGS_IMPL::SETTINGS_IMPL()
     : port(0),
diff --git a/projects/sgauth/settings_impl.h b/projects/sgauth/settings_impl.h
index 74b70d39..b334dac9 100644
--- a/projects/sgauth/settings_impl.h
+++ b/projects/sgauth/settings_impl.h
@@ -23,7 +23,7 @@
 
 #include <string>
 
-#include "os_int.h"
+#include "stg/os_int.h"
 
 class SETTINGS_IMPL {
 public:
diff --git a/projects/sgauth/web.cpp b/projects/sgauth/web.cpp
index edafc9d8..e3c38adf 100644
--- a/projects/sgauth/web.cpp
+++ b/projects/sgauth/web.cpp
@@ -28,9 +28,9 @@
 #include <time.h>
 #include <libintl.h>
 
+#include "stg/common.h"
+#include "stg/ia_auth_c.h"
 #include "web.h"
-#include "common.h"
-#include "ia_auth_c.h"
 
 extern WEB * web;
 extern IA_CLIENT_PROT * clnp;
diff --git a/projects/sgauth/web.h b/projects/sgauth/web.h
index be9e158d..a4dfcb48 100644
--- a/projects/sgauth/web.h
+++ b/projects/sgauth/web.h
@@ -39,8 +39,8 @@
 #include <string>
 #include <list>
 
-#include "stg_const.h"
-#include "ia_packets.h"
+#include "stg/stg_const.h"
+#include "stg/ia_packets.h"
 
 using namespace std;