Fix a concatencate problem.

This commit is contained in:
Mark de Wever 2008-10-09 11:12:00 +00:00
parent ad68f8fd47
commit 5fdd44cb31

View file

@ -444,7 +444,7 @@ void server::send_password_request(network::connection sock, const char* msg, co
std::string salt3 = user_handler_->create_pepper(user, 1);
if(salt2.empty() || salt3.empty()) {
send_error(sock, "Even though your nick is registered on this server you"
"cannot log in due to an error in the hashing algorithm.");
" cannot log in due to an error in the hashing algorithm.");
return;
}