Changeset 1036
- Timestamp:
- 07/08/07 20:58:17 (1 year ago)
- Files:
-
- 1.8.3/trunk/CHANGES.182 (modified) (1 diff)
- 1.8.3/trunk/CHANGES.183 (modified) (1 diff)
- 1.8.3/trunk/game/txt/hlp/pennv182.hlp (modified) (1 diff)
- 1.8.3/trunk/game/txt/hlp/pennv183.hlp (modified) (1 diff)
- 1.8.3/trunk/src/attrib.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/trunk/CHANGES.182
r1032 r1036 19 19 * After many years of valuable work, Talek has retired from 20 20 development. 21 22 Minor changes:23 * KEEPALIVE flag makes the server send a telnet NOP after24 a short period of inactivity; helps prevent timeouts from25 NAT/router devices with a short timeout. [MUX]26 27 Fixes:28 * Fixed assorted small memory leaks. [SW]29 * Fixed handling of telnet NOPs sent by clients. [SW]30 * The OpenSSL random number pool wasn't getting adequately31 initialized on systems without /dev/urandom [SW]32 * Infinite loop in math code. Reported by Ashen-Sugar. [GM]33 34 Version 1.8.2 patchlevel 5 June 13, 200735 21 36 22 Minor changes: 1.8.3/trunk/CHANGES.183
r1032 r1036 78 78 common cases by Sketch and Javelin. 79 79 * Fixes to ANSI output where extra ^[[m were being sent. 80 * Default flags weren't getting set on some attributes in certain 81 cases. Report by Talvo. 80 82 * Fixes from 1.8.2p6 81 83 1.8.3/trunk/game/txt/hlp/pennv182.hlp
r1032 r1036 5 5 * After many years of valuable work, Talek has retired from 6 6 development. 7 8 Minor changes:9 * KEEPALIVE flag makes the server send a telnet NOP after10 a short period of inactivity; helps prevent timeouts from11 NAT/router devices with a short timeout. [MUX]12 13 Fixes:14 * Fixed assorted small memory leaks. [SW]15 * Fixed handling of telnet NOPs sent by clients. [SW]16 * The OpenSSL random number pool wasn't getting adequately17 initialized on systems without /dev/urandom [SW]18 * Infinite loop in math code. Reported by Ashen-Sugar. [GM]19 20 & 1.8.2p521 Version 1.8.2 patchlevel 5 June 13, 200722 7 23 8 Minor changes: 1.8.3/trunk/game/txt/hlp/pennv183.hlp
r1032 r1036 75 75 common cases by Sketch and Javelin. 76 76 * Fixes to ANSI output where extra ^[[m were being sent. 77 * Default flags weren't getting set on some attributes in certain 78 cases. Report by Talvo. 77 79 * Fixes from 1.8.2p6 78 80 1.8.3/trunk/src/attrib.c
r1032 r1036 394 394 do { \ 395 395 ATTR *std = atr_match(AL_NAME((atr))); \ 396 if (std && ! (flags) && !strcmp(AL_NAME(std), AL_NAME((atr)))) { \397 AL_FLAGS(atr) = AL_FLAGS(std) ; \396 if (std && !strcmp(AL_NAME(std), AL_NAME((atr)))) { \ 397 AL_FLAGS(atr) = AL_FLAGS(std) | flags; \ 398 398 } else { \ 399 399 AL_FLAGS(atr) = flags; \
