summaryrefslogtreecommitdiffstats
path: root/src/modules/m_httpd.cpp
diff options
context:
space:
mode:
authorGravatar Jackmcbarn2011-01-29 16:29:33 -0500
committerGravatar Jackmcbarn2011-01-29 16:29:33 -0500
commit5dbabb823456744e7442edc2bfde1272bb2edcb1 (patch)
tree9ca74394c3d59592b7cd70f64b1b37faaab3f02c /src/modules/m_httpd.cpp
parentRemove protocol.h from inspircd.h (diff)
downloadinspircd++-5dbabb823456744e7442edc2bfde1272bb2edcb1.tar.gz
inspircd++-5dbabb823456744e7442edc2bfde1272bb2edcb1.tar.bz2
inspircd++-5dbabb823456744e7442edc2bfde1272bb2edcb1.zip
Remove cull_list.h from inspircd.h
Diffstat (limited to 'src/modules/m_httpd.cpp')
-rw-r--r--src/modules/m_httpd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp
index 9d1e73d71..7054f1f4d 100644
--- a/src/modules/m_httpd.cpp
+++ b/src/modules/m_httpd.cpp
@@ -12,6 +12,7 @@
*/
#include "inspircd.h"
+#include "cull_list.h"
#include "httpd.h"
/* $ModDesc: Provides HTTP serving facilities to modules */
@@ -76,7 +77,7 @@ class HttpServerSocket : public BufferedSocket
virtual void OnError(BufferedSocketError)
{
- ServerInstance->GlobalCulls.AddItem(this);
+ ServerInstance->GlobalCulls->AddItem(this);
}
std::string Response(int response)