diff --git a/Changes b/Changes index 2fc7fe890..dab968c4e 100644 --- a/Changes +++ b/Changes @@ -385,3 +385,4 @@ - Made admins unable to be shunned - Made some socket errors which normally only showed up in DEBUGMODE, show up in ircd.log as well +- Fixed a wrongly outputted message (in hash collision detect) diff --git a/src/s_serv.c b/src/s_serv.c index a11fddd06..404241645 100644 --- a/src/s_serv.c +++ b/src/s_serv.c @@ -571,7 +571,7 @@ int m_server(cptr, sptr, parc, parv) { ircsprintf(pp, "Servername %s collides with servername %s (similar hash). Change servername in some way (maybe change case)", parv[1], f); - return exit_client(cptr, cptr, cptr, f); + return exit_client(cptr, cptr, cptr, pp); } if ((acptr = find_name(host, NULL))) {