mirror of
https://github.com/unrealircd/unrealircd.git
synced 2026-07-07 00:43:13 +02:00
- /SAMODE could cause 'fishy timestamp' if digit parameters were used (eg: SAMODE #chan +l 5),
this has now be fixed by sending an explicit TS 0.
This commit is contained in:
@@ -105,6 +105,7 @@ Unreal3.2.3-pre3 Release Notes
|
||||
- zlib upgraded to 1.2.2, curl upgraded to 7.13.1, both fix various issues.
|
||||
- Win32 installer now also installs doc\technical\*.*
|
||||
- Desynch issues regarding +s/+p and +c/+S
|
||||
- /SAMODE causing a 'fishy timestamp' if a cmode with a digit parameter was used.
|
||||
|
||||
==[ REMOVED ]==
|
||||
- NAZIISH_CHBAN_HANDLING (did not work at all)
|
||||
|
||||
@@ -765,3 +765,5 @@
|
||||
** internal 3.2.3-pre3 release **
|
||||
- Some spelling fixes in unreal32docs.html, reported by alex323 (#2412).
|
||||
- Updated the list of donators
|
||||
- /SAMODE could cause 'fishy timestamp' if digit parameters were used (eg: SAMODE #chan +l 5),
|
||||
this has now be fixed by sending an explicit TS 0.
|
||||
|
||||
@@ -498,6 +498,9 @@ creationtime = sendts;
|
||||
sendto_serv_butone_token(cptr, sptr->name, MSG_MODE, TOK_MODE,
|
||||
"%s %s%s %s %lu", chptr->chname, isbounce ? "&" : "",
|
||||
modebuf, parabuf, sendts);
|
||||
else if (samode && IsMe(sptr)) /* SAMODE is a special case: always send a TS of 0 (omitting TS==desynch) */
|
||||
sendto_serv_butone_token(cptr, sptr->name, MSG_MODE, TOK_MODE,
|
||||
"%s %s %s 0", chptr->chname, modebuf, parabuf);
|
||||
else
|
||||
sendto_serv_butone_token(cptr, sptr->name, MSG_MODE, TOK_MODE,
|
||||
"%s %s%s %s", chptr->chname, isbounce ? "&" : "",
|
||||
|
||||
Reference in New Issue
Block a user