1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-07-07 07:43:13 +02:00

+- Fixed a linking bug (where did that come from)

This commit is contained in:
stskeeps
2000-10-29 08:14:43 +00:00
parent cdea0263ac
commit 856282da07
2 changed files with 4 additions and 2 deletions
+3 -2
View File
@@ -651,9 +651,10 @@ int m_server(cptr, sptr, parc, parv)
{
sendto_one(sptr, "ERROR :Bogus server name (%s)",
sptr->name, host);
sendto_ops
/* sendto_ops
("WARNING: Bogus server name (%s) from %s (maybe just a fishy client)",
host, get_client_name(cptr, TRUE));
*/
sptr->since += 7;
return 0;
}
@@ -720,7 +721,7 @@ int m_server(cptr, sptr, parc, parv)
}
/* bzero(cptr->passwd, sizeof(cptr->passwd)); */
}
if ((acptr = find_name(host, NULL)))
if ((acptr = find_server_quickx(host, NULL)))
{
aClient *ocptr;