summaryrefslogtreecommitdiff
path: root/modules/extra/m_xmlrpc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/extra/m_xmlrpc.cpp')
-rw-r--r--modules/extra/m_xmlrpc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/extra/m_xmlrpc.cpp b/modules/extra/m_xmlrpc.cpp
index 2ff648812..a3b999a5e 100644
--- a/modules/extra/m_xmlrpc.cpp
+++ b/modules/extra/m_xmlrpc.cpp
@@ -157,7 +157,7 @@ class MyXMLRPCServiceInterface : public XMLRPCServiceInterface, public HTTPPage
class ModuleXMLRPC : public Module
{
- service_reference<HTTPProvider> httpref;
+ ServiceReference<HTTPProvider> httpref;
public:
MyXMLRPCServiceInterface xmlrpcinterface;
@@ -183,7 +183,7 @@ class ModuleXMLRPC : public Module
void OnReload() anope_override
{
ConfigReader config;
- httpref = service_reference<HTTPProvider>("HTTPProvider", "httpd/main");
+ httpref = ServiceReference<HTTPProvider>("HTTPProvider", "httpd/main");
}
};