diff options
| author | 2024-08-27 14:09:21 +0100 | |
|---|---|---|
| committer | 2024-08-27 14:09:21 +0100 | |
| commit | a5fc0da690ea62c3a76ca2cceaa2ab344a93fce3 (patch) | |
| tree | d0c81a7700ac184b50417f146204dfbcda502811 /include | |
| parent | Merge branch 'insp4' into master. (diff) | |
| download | inspircd++-a5fc0da690ea62c3a76ca2cceaa2ab344a93fce3.tar.gz inspircd++-a5fc0da690ea62c3a76ca2cceaa2ab344a93fce3.tar.bz2 inspircd++-a5fc0da690ea62c3a76ca2cceaa2ab344a93fce3.zip | |
Fix the case of some InspIRCd class member variables.
Diffstat (limited to 'include')
| -rw-r--r-- | include/inspircd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index a216d9e08..1a2003695 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -262,10 +262,10 @@ public: std::function<bool(const std::string_view&)> IsUser = &DefaultIsUser; /** List of the open listeners. */ - std::vector<ListenSocket*> ports; + std::vector<ListenSocket*> Ports; /** The time at which the server was started. */ - time_t startup_time; + const time_t StartTime; /** Initialises a new server instance and stores it in ServerInstance * @param argc The argument count from main(). |
