aboutsummaryrefslogtreecommitdiff
path: root/modules/httpd_stats.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2024-08-27 14:09:21 +0100
committerGravatar Sadie Powell2024-08-27 14:09:21 +0100
commita5fc0da690ea62c3a76ca2cceaa2ab344a93fce3 (patch)
treed0c81a7700ac184b50417f146204dfbcda502811 /modules/httpd_stats.cpp
parentMerge branch 'insp4' into master. (diff)
Fix the case of some InspIRCd class member variables.
Diffstat (limited to 'modules/httpd_stats.cpp')
-rw-r--r--modules/httpd_stats.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/httpd_stats.cpp b/modules/httpd_stats.cpp
index cc86c8830..3a3019fd4 100644
--- a/modules/httpd_stats.cpp
+++ b/modules/httpd_stats.cpp
@@ -172,7 +172,7 @@ namespace Stats
.Attribute("opercount", ServerInstance->Users.all_opers.size())
.Attribute("socketcount", SocketEngine::GetUsedFds())
.Attribute("socketmax", SocketEngine::GetMaxFds())
- .Attribute("boottime", ServerInstance->startup_time)
+ .Attribute("boottime", ServerInstance->StartTime)
.Attribute("currenttime", ServerInstance->Time());
ISupport(serializer);