diff options
author | Sadie Powell <sadie@witchery.services> | 2020-02-15 05:58:19 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-02-15 06:25:12 +0000 |
commit | 24f1224f770eb8f6a075d3c8bd083545c17bba10 (patch) | |
tree | 2955e3c0e789f8b3fd872a2e52d1fa3dda4b8656 /src/modules/m_spanningtree/main.cpp | |
parent | f9b4c280f8e7bec0c9237f9648c4fc5a77cfc468 (diff) |
Add HasFd to EventHandler and switch code to use it.
Diffstat (limited to 'src/modules/m_spanningtree/main.cpp')
-rw-r--r-- | src/modules/m_spanningtree/main.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/modules/m_spanningtree/main.cpp b/src/modules/m_spanningtree/main.cpp index 1aab60eda..5e6e9b036 100644 --- a/src/modules/m_spanningtree/main.cpp +++ b/src/modules/m_spanningtree/main.cpp @@ -221,11 +221,7 @@ void ModuleSpanningTree::ConnectServer(Link* x, Autoconnect* y) { // Create a TreeServer object that will start connecting immediately in the background TreeSocket* newsocket = new TreeSocket(x, y, sa); - if (newsocket->GetFd() > -1) - { - /* Handled automatically on success */ - } - else + if (!newsocket->HasFd()) { ServerInstance->SNO->WriteToSnoMask('l', "CONNECT: Error connecting \002%s\002: %s.", x->Name.c_str(), newsocket->getError().c_str()); |