From 6c56f8a9fc2b79c9e4dfafc0fbd57bdd2130f230 Mon Sep 17 00:00:00 2001 From: crs Date: Sun, 12 Jan 2003 16:35:11 +0000 Subject: [PATCH] Removed unnecessary variable names. --- lib/server/CServer.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/server/CServer.cpp b/lib/server/CServer.cpp index 478be844..327475e3 100644 --- a/lib/server/CServer.cpp +++ b/lib/server/CServer.cpp @@ -1337,7 +1337,7 @@ CServer::runClient(void* vsocket) try { CProtocolUtil::writef(proxy->getOutputStream(), kMsgEBad); } - catch (XSocket& e) { + catch (XSocket&) { // ignore. client probably aborted the connection. } } @@ -1453,7 +1453,7 @@ CServer::handshakeClient(IDataSocket* socket) CProtocolUtil::writef(output, kMsgEIncompatible, kProtocolMajorVersion, kProtocolMinorVersion); } - catch (XSocket& e) { + catch (XSocket&) { // ignore } } @@ -1463,7 +1463,7 @@ CServer::handshakeClient(IDataSocket* socket) try { CProtocolUtil::writef(output, kMsgEBad); } - catch (XSocket& e) { + catch (XSocket&) { // ignore. client probably aborted the connection. } }