diff options
Diffstat (limited to 'src/stats.cpp')
-rw-r--r-- | src/stats.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/stats.cpp b/src/stats.cpp index df41d26da..fb4e5e7a5 100644 --- a/src/stats.cpp +++ b/src/stats.cpp @@ -80,10 +80,7 @@ void InspIRCd::DoStats(char statschar, User* user, string_list &results) else res << c->host; - if (c->port) - res << ' ' << c->port << ' '; - else - res << " * "; + res << ' ' << c->config->getString("port", "*") << ' '; res << c->GetRecvqMax() << ' ' << c->GetSendqSoftMax() << ' ' << c->GetSendqHardMax() << ' ' << c->GetCommandRate() << ' ' << c->GetPenaltyThreshold(); |