diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-30 19:50:28 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-30 19:50:28 +0000 |
commit | 550f8bce1bf19ef186f27e574ea126113568d5e3 (patch) | |
tree | 4ab5ac5b3c7ddf4989d931b2cb40652a9d539f2b | |
parent | 5151fca4ab806eefdc7b6ac0264f15434cbd9457 (diff) |
Fixed ircd_connector::CheckPing returning an undefined result
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1569 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | src/connection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/connection.cpp b/src/connection.cpp index 95363626e..e96825f75 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -207,6 +207,7 @@ bool ircd_connector::CheckPing() } } } + return true; } void ircd_connector::ResetPing() |