summaryrefslogtreecommitdiff
path: root/src/modules/m_httpd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 00:09:06 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2006-07-11 00:09:06 +0000
commite2e165d57331ea5a7805bad5df6938ce701aa261 (patch)
tree3c8d0f282b4e6cff7afb8c2809f8c97d0e850e55 /src/modules/m_httpd.cpp
parenteecdd0da4b144d070d253fcad035077b38e438ca (diff)
Change last vestiges of m_http.so -> m_httpd.so
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4320 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_httpd.cpp')
-rw-r--r--src/modules/m_httpd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_httpd.cpp b/src/modules/m_httpd.cpp
index ef3d89520..8150a6b5f 100644
--- a/src/modules/m_httpd.cpp
+++ b/src/modules/m_httpd.cpp
@@ -72,8 +72,8 @@ class HttpSocket : public InspSocket
{
struct tm *timeinfo = localtime(&TIME);
this->Write("HTTP/1.1 200 OK\r\nDate: ");
- this->Write(asctime(timeinfo));
- this->Write("Server: InspIRCd/m_http.so/1.1\r\nContent-Length: "+ConvToStr(index->ContentSize())+
+ this->Write(asctime(timeinfo));
+ this->Write("Server: InspIRCd/m_httpd.so/1.1\r\nContent-Length: "+ConvToStr(index->ContentSize())+
"\r\nConnection: close\r\nContent-Type: text/html\r\n\r\n");
}