diff options
| author | 2008-07-17 20:19:13 +0000 | |
|---|---|---|
| committer | 2008-07-17 20:19:13 +0000 | |
| commit | 3e7b4775f1e896d070250d06a9162d685fbd33dc (patch) | |
| tree | b3917fd6e11c0d2338b11c4f909861ed94f73f06 /src/configreader.cpp | |
| parent | Send strerror() on socket errors, backport of r10028 (diff) | |
Backport r10030
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@10031 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/configreader.cpp')
| -rw-r--r-- | src/configreader.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configreader.cpp b/src/configreader.cpp index 4d5a61661..1973ca5e8 100644 --- a/src/configreader.cpp +++ b/src/configreader.cpp @@ -885,7 +885,7 @@ void ServerConfig::Read(bool bail, userrec* user) int j = 1; for (FailedPortList::iterator i = pl.begin(); i != pl.end(); i++, j++) { - user->WriteServ("NOTICE %s :*** %d. IP: %s Port: %lu", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), (unsigned long)i->second); + user->WriteServ("NOTICE %s :*** %d. IP: %s Port: %s", user->nick, j, i->first.empty() ? "<all>" : i->first.c_str(), i->second.c_str()); } } |
