diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-05 12:02:27 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-11-05 12:02:27 +0000 |
commit | 0955da18e4f1667e25c97892f4ea7d8c2ba9e516 (patch) | |
tree | 58287c1155fec095c8bcfb25016ffa5fc85d70d1 | |
parent | c82351d9b9c3133c761c3f1f62186e4e8020a6e9 (diff) |
Change message to indicate that the count only includes client ports
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5654 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index cd99e63b6..e7e6c9aad 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -299,7 +299,7 @@ InspIRCd::InspIRCd(int argc, char** argv) if (stats->BoundPortCount != (unsigned int)found_ports) { - printf("\nWARNING: Not all your ports could be bound -- starting anyway with %ld of %d ports bound.\n", stats->BoundPortCount, found_ports); + printf("\nWARNING: Not all your client ports could be bound --\n starting anyway with %ld of %d client ports bound.\n", stats->BoundPortCount, found_ports); } /* Add the listening sockets used for client inbound connections |