diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/memoserv.cpp | 1 | ||||
-rw-r--r-- | src/modulemanager.cpp | 1 | ||||
-rw-r--r-- | src/nickserv.cpp | 1 | ||||
-rw-r--r-- | src/process.cpp | 1 | ||||
-rw-r--r-- | src/socketengines/pipeengine_pipe.cpp | 2 |
5 files changed, 5 insertions, 1 deletions
diff --git a/src/memoserv.cpp b/src/memoserv.cpp index 61ea73b72..13d4d04d6 100644 --- a/src/memoserv.cpp +++ b/src/memoserv.cpp @@ -17,6 +17,7 @@ #include "memo.h" #include "users.h" #include "account.h" +#include "regchannel.h" Memo::Memo() : Flags<MemoFlag>(MemoFlagStrings), Serializable("Memo") { } diff --git a/src/modulemanager.cpp b/src/modulemanager.cpp index 473e46a0f..360a0d34b 100644 --- a/src/modulemanager.cpp +++ b/src/modulemanager.cpp @@ -10,6 +10,7 @@ #include "modules.h" #include "extern.h" #include "users.h" +#include "regchannel.h" #include <sys/types.h> #include <sys/stat.h> diff --git a/src/nickserv.cpp b/src/nickserv.cpp index b6455447a..8b5c41df9 100644 --- a/src/nickserv.cpp +++ b/src/nickserv.cpp @@ -14,6 +14,7 @@ #include "modules.h" #include "users.h" #include "protocol.h" +#include "regchannel.h" NickAlias* findnick(const Anope::string &nick) { diff --git a/src/process.cpp b/src/process.cpp index 69017f63b..dfc4f5563 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -15,6 +15,7 @@ #include "protocol.h" #include "servers.h" #include "users.h" +#include "regchannel.h" /** Main process routine * @param buffer A raw line from the uplink to do things with diff --git a/src/socketengines/pipeengine_pipe.cpp b/src/socketengines/pipeengine_pipe.cpp index ac3a9cb2c..e15f0274d 100644 --- a/src/socketengines/pipeengine_pipe.cpp +++ b/src/socketengines/pipeengine_pipe.cpp @@ -27,7 +27,7 @@ Pipe::Pipe() : Socket(-1), WritePipe(-1) flags = fcntl(fds[1], F_GETFL, 0); fcntl(fds[1], F_SETFL, flags | O_NONBLOCK); - this->~Socket(); + this->~Pipe(); this->Sock = fds[0]; this->WritePipe = fds[1]; |