aboutsummaryrefslogtreecommitdiffstats
path: root/modules/hash_pbkdf2.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2026-03-02 12:40:52 +0000
committerGravatar Sadie Powell2026-03-02 12:40:52 +0000
commitcf3ce6cc23401f13869f5134227e50459f2b809d (patch)
tree88261dde94d90539b85fe4b430cbbce599be6748 /modules/hash_pbkdf2.cpp
parentFix regular users being told about server operator privileges. (diff)
Rename ServiceProvider methods to avoid shadowing issues.
Diffstat (limited to 'modules/hash_pbkdf2.cpp')
-rw-r--r--modules/hash_pbkdf2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/hash_pbkdf2.cpp b/modules/hash_pbkdf2.cpp
index 187ff7352..0659400d7 100644
--- a/modules/hash_pbkdf2.cpp
+++ b/modules/hash_pbkdf2.cpp
@@ -254,7 +254,7 @@ public:
void OnServiceAdd(ServiceProvider& service) override
{
- if (!service.name.starts_with("hash/"))
+ if (!service.service_name.starts_with("hash/"))
return; // Not a hash provider.
auto* hp = static_cast<Hash::Provider*>(&service);
@@ -295,7 +295,7 @@ public:
void OnServiceDel(ServiceProvider& service) override
{
- if (!service.name.starts_with("hash/"))
+ if (!service.service_name.starts_with("hash/"))
return; // Not a hash provider.
const auto& hp = static_cast<Hash::Provider&>(service);