summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-17 20:07:58 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2008-07-17 20:07:58 +0000
commit21bb2f2acf59f1bdf2853908fe82601531068a21 (patch)
tree0ca85237189811de58ae6b2b2e75aa9f080cb5af /include
parent681985c2cb121397fe54d3bcd0ab75d2d8ff04c3 (diff)
Combine IP+port in a failed port list, show (the more helpful) error string so the user can have some idea of what actually went wrong.. why we forced people to strace is beyond me..
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@10030 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/inspircd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 10729d308..9ef5dbcfb 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -235,7 +235,7 @@ class serverstats : public classbase
};
/** A list of failed port bindings, used for informational purposes on startup */
-typedef std::vector<std::pair<std::string, long> > FailedPortList;
+typedef std::vector<std::pair<std::string, std::string> > FailedPortList;
class InspIRCd;