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

Fixed a silly bug with regards to matching against compressed IPs in link {} checking

This commit is contained in:
stskeeps
2002-07-22 20:39:58 +00:00
parent f0564193ba
commit f19ebceee6
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -1395,3 +1395,4 @@ seen. gmtime warning still there
- Depricated AKILL/RAKILL and made them alias to TKL G +/- - for normal users they
just reply that the commands are depricated. Server compatiblity is maintained.
Eventually it will just be removed. Thank god for modules.
- Fixed a silly bug with regards to matching against compressed IPs in link {} checking
+1 -1
View File
@@ -639,7 +639,7 @@ CMD_FUNC(m_server)
* Then on compressed
*/
if (!aconf)
aconf = Find_link(cptr->username, cptr->sockhost, Inet_ia2pNB(&cptr->ip, 0), servername);
aconf = Find_link(cptr->username, cptr->sockhost, Inet_ia2pNB(&cptr->ip, 1), servername);
#endif
if (!aconf)
{