fixed log message.

This commit is contained in:
crs 2002-05-23 15:00:13 +00:00
parent 13eee14232
commit 9ce7a2757a
1 changed files with 1 additions and 1 deletions

View File

@ -894,7 +894,7 @@ void CServer::handshakeClient(void* vsocket)
} }
catch (XDuplicateClient& e) { catch (XDuplicateClient& e) {
// client has duplicate name // client has duplicate name
log((CLOG_WARN "a client with name \"%s\" is already connected)", e.getName().c_str())); log((CLOG_WARN "a client with name \"%s\" is already connected", e.getName().c_str()));
CProtocolUtil::writef(output.get(), kMsgEBusy); CProtocolUtil::writef(output.get(), kMsgEBusy);
} }
catch (XIncompatibleClient& e) { catch (XIncompatibleClient& e) {