mirror of
https://github.com/pissnet/pissircd.git
synced 2025-07-28 22:12:25 +01:00
- Got rid of qline notice that could happen if using services holds (semi-race condition),
reported by tabrisnet (#0002950).
This commit is contained in:
parent
0a9cf5420e
commit
7369f15b40
2 changed files with 3 additions and 1 deletions
2
Changes
2
Changes
|
@ -1244,3 +1244,5 @@
|
|||
- Updated list of donators
|
||||
** 3.2.5-rc2 release **
|
||||
- Updated release notes, bleh.. I forgot :P
|
||||
- Got rid of qline notice that could happen if using services holds (semi-race condition),
|
||||
reported by tabrisnet (#0002950).
|
||||
|
|
|
@ -270,7 +270,7 @@ DLLFUNC CMD_FUNC(m_nick)
|
|||
acptrs ? acptrs->name : "unknown server");
|
||||
}
|
||||
|
||||
if (IsServer(cptr) && IsPerson(sptr)) /* remote user changing nick */
|
||||
if (IsServer(cptr) && IsPerson(sptr) && !ishold) /* remote user changing nick */
|
||||
{
|
||||
sendto_snomask(SNO_QLINE, "Q:lined nick %s from %s on %s", nick,
|
||||
sptr->name, sptr->srvptr ? sptr->srvptr->name : "<unknown>");
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue