summaryrefslogtreecommitdiff
path: root/modules/httpd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/httpd.cpp')
-rw-r--r--modules/httpd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/httpd.cpp b/modules/httpd.cpp
index 5c7a74ff5..b2eed517d 100644
--- a/modules/httpd.cpp
+++ b/modules/httpd.cpp
@@ -313,7 +313,7 @@ public:
}
}
- ClientSocket* OnAccept(int fd, const sockaddrs &addr) override
+ ClientSocket *OnAccept(int fd, const sockaddrs &addr) override
{
auto *c = new MyHTTPClient(this, fd, addr);
this->clients.emplace_back(c);
@@ -330,7 +330,7 @@ public:
this->pages.erase(page->GetURL());
}
- HTTPPage* FindPage(const Anope::string &pname) override
+ HTTPPage *FindPage(const Anope::string &pname) override
{
if (this->pages.count(pname) == 0)
return NULL;