aboutsummaryrefslogtreecommitdiffstats
path: root/modules/extra/mysql.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/extra/mysql.cpp
parentFix regular users being told about server operator privileges. (diff)
Rename ServiceProvider methods to avoid shadowing issues.
Diffstat (limited to 'modules/extra/mysql.cpp')
-rw-r--r--modules/extra/mysql.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/extra/mysql.cpp b/modules/extra/mysql.cpp
index 988418d83..79b2c81be 100644
--- a/modules/extra/mysql.cpp
+++ b/modules/extra/mysql.cpp
@@ -381,7 +381,7 @@ public:
if (!initialquery.empty() && mysql_real_query(connection, initialquery.data(), initialquery.length()))
{
ServerInstance->Logs.Critical(MODNAME, "Could not execute initial query \"{}\" for {}: {}",
- initialquery, name, mysql_error(connection));
+ initialquery, this->service_name, mysql_error(connection));
return false;
}