Removed unnecessary variable names.

This commit is contained in:
crs 2003-01-12 16:35:11 +00:00
parent b2e11d3d35
commit 6c56f8a9fc
1 changed files with 3 additions and 3 deletions

View File

@ -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.
}
}