From be2cf7a99fbf3c2fd1139608fe2b3cc5cdbd2daf Mon Sep 17 00:00:00 2001 From: brain Date: Mon, 10 Jul 2006 21:30:30 +0000 Subject: Move logging further up in inspsocket so we get the right error for bind failure git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4309 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspsocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inspsocket.cpp') diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 4264700f5..cc0368525 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -73,12 +73,12 @@ InspSocket::InspSocket(const std::string &ahost, int aport, bool listening, unsi { if (!BindSocket(this->fd,this->client,this->server,aport,(char*)ahost.c_str())) { + log(DEBUG,"BindSocket() error %s",strerror(errno)); this->Close(); this->fd = -1; this->state = I_ERROR; this->OnError(I_ERR_BIND); this->ClosePending = true; - log(DEBUG,"BindSocket() error %s",strerror(errno)); return; } else -- cgit v1.2.3