diff options
| author | 2026-03-02 12:40:52 +0000 | |
|---|---|---|
| committer | 2026-03-02 12:40:52 +0000 | |
| commit | cf3ce6cc23401f13869f5134227e50459f2b809d (patch) | |
| tree | 88261dde94d90539b85fe4b430cbbce599be6748 /modules/extra/mysql.cpp | |
| parent | Fix 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.cpp | 2 |
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; } |
