summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustin Crawford <Justasic@Gmail.com>2012-04-14 20:21:38 -0700
committerJustin Crawford <Justasic@Gmail.com>2012-04-14 23:33:20 -0700
commit9ebd9cba72056c5b36696e166826afb981f25ebb (patch)
tree75b3bc8b6a3b0fb1b6a2f3bb7c904abef15df1f4 /include
parentdf5f76832ee67d1cbfb1fc47a8d3ec3823f010c5 (diff)
Fix some of the include guard names (requested by SaberUK)
Diffstat (limited to 'include')
-rw-r--r--include/cull_list.h4
-rw-r--r--include/filelogger.h4
-rw-r--r--include/inspsocket.h4
-rw-r--r--include/inspstring.h4
-rw-r--r--include/logger.h4
-rw-r--r--include/socketengine.h4
-rw-r--r--include/threadengine.h4
-rw-r--r--include/threadengines/threadengine_pthread.h4
-rw-r--r--include/threadengines/threadengine_win32.h4
-rw-r--r--include/typedefs.h4
10 files changed, 20 insertions, 20 deletions
diff --git a/include/cull_list.h b/include/cull_list.h
index a9e99385a..8e2d5f2ab 100644
--- a/include/cull_list.h
+++ b/include/cull_list.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef CULLLIST_H
-#define CULLLIST_H
+#ifndef CULL_LIST_H
+#define CULL_LIST_H
/**
* The CullList class is used to delete objects at the end of the main loop to
diff --git a/include/filelogger.h b/include/filelogger.h
index 6612a559b..45c96bc9f 100644
--- a/include/filelogger.h
+++ b/include/filelogger.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef LOG_H
-#define LOG_H
+#ifndef FILELOGGER_H
+#define FILELOGGER_H
#include "logger.h"
diff --git a/include/inspsocket.h b/include/inspsocket.h
index 07beb59c6..71c2a06d9 100644
--- a/include/inspsocket.h
+++ b/include/inspsocket.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef INSP_SOCKET_H
-#define INSP_SOCKET_H
+#ifndef INSPSOCKET_H
+#define INSPSOCKET_H
#include "timer.h"
diff --git a/include/inspstring.h b/include/inspstring.h
index 20b16202e..da3766241 100644
--- a/include/inspstring.h
+++ b/include/inspstring.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef IN_INSPSTRING_H
-#define IN_INSPSTRING_H
+#ifndef INSPSTRING_H
+#define INSPSTRING_H
// This (inspircd_config) is needed as inspstring doesn't pull in the central header
#include "inspircd_config.h"
diff --git a/include/logger.h b/include/logger.h
index 6168bedef..f6f2f1e4f 100644
--- a/include/logger.h
+++ b/include/logger.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef LOGMANAGER_H
-#define LOGMANAGER_H
+#ifndef LOGGER_H
+#define LOGGER_H
/** This class implements a nonblocking writer.
* Most people writing an ircd give little thought to their disk
diff --git a/include/socketengine.h b/include/socketengine.h
index 0386ebd1d..9b7ccbf1f 100644
--- a/include/socketengine.h
+++ b/include/socketengine.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef SOCKETENGINE
-#define SOCKETENGINE
+#ifndef SOCKETENGINE_H
+#define SOCKETENGINE_H
#include <vector>
#include <string>
diff --git a/include/threadengine.h b/include/threadengine.h
index c73dd19bf..3768f113c 100644
--- a/include/threadengine.h
+++ b/include/threadengine.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef THREADENGINE
-#define THREADENGINE
+#ifndef THREADENGINE_H
+#define THREADENGINE_H
#include <vector>
#include <string>
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h
index d5c7696af..4a8ab241e 100644
--- a/include/threadengines/threadengine_pthread.h
+++ b/include/threadengines/threadengine_pthread.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef THREADENGINE_PTHREAD
-#define THREADENGINE_PTHREAD
+#ifndef THREADENGINE_PTHREAD_H
+#define THREADENGINE_PTHREAD_H
#include <pthread.h>
#include "typedefs.h"
diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h
index 23d3e9233..b6025d336 100644
--- a/include/threadengines/threadengine_win32.h
+++ b/include/threadengines/threadengine_win32.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef THREADENGINE_WIN32THREAD
-#define THREADENGINE_WIN32THREAD
+#ifndef THREADENGINE_WIN32_H
+#define THREADENGINE_WIN32_H
#include "inspircd_config.h"
#include "base.h"
diff --git a/include/typedefs.h b/include/typedefs.h
index 76fb929ca..ba811e714 100644
--- a/include/typedefs.h
+++ b/include/typedefs.h
@@ -11,8 +11,8 @@
* ---------------------------------------------------
*/
-#ifndef TYPEDEF_H
-#define TYPEDEF_H
+#ifndef TYPEDEFS_H
+#define TYPEDEFS_H
class BanCacheManager;
class BanItem;