1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-29 13:26:38 +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
+1
View File
@@ -665,3 +665,4 @@
- Added is_chanownprotop() checks if +q +a or +o with 1 loop
- Added chmode +N (no nick changes) (opers, ulines, +o +q or +a can override)
- Added some fixes on the SJB64 crashing bug, and added tokenization in
channel messsages (yahooooo!)
+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;