aboutsummaryrefslogtreecommitdiffstats
path: root/modules/httpd.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-02 13:06:35 +0000
committerGravatar Sadie Powell2026-03-02 13:08:47 +0000
commitac7a020b5a00227fee1971c599db716be1c53b40 (patch)
tree654e1db7de3052db8479bac0ba72c80ffca6c870 /modules/httpd.cpp
parentRename ServiceProvider methods to avoid shadowing issues. (diff)
Move the event/ prefix of events to the parent class.
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 42fea8152..ee8f6eb35 100644
--- a/modules/httpd.cpp
+++ b/modules/httpd.cpp
@@ -425,8 +425,8 @@ public:
ModuleHttpServer()
: Module(VF_VENDOR, "Allows the server administrator to serve various useful resources over HTTP.")
, APIImpl(this)
- , acleventprov(this, "event/http-acl")
- , reqeventprov(this, "event/http-request")
+ , acleventprov(this, "http-acl")
+ , reqeventprov(this, "http-request")
{
aclevprov = &acleventprov;
reqevprov = &reqeventprov;