PennMUSH Community

Changeset 1036

Show
Ignore:
Timestamp:
07/08/07 20:58:17 (1 year ago)
Author:
shawnw
Message:

1.8.3p4 in trunk, part 2

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/trunk/CHANGES.182

    r1032 r1036  
    1919  * After many years of valuable work, Talek has retired from 
    2020    development.   
    21  
    22 Minor changes: 
    23   * KEEPALIVE flag makes the server send a telnet NOP after 
    24     a short period of inactivity; helps prevent timeouts from 
    25     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 adequately 
    31     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, 2007 
    3521 
    3622Minor changes: 
  • 1.8.3/trunk/CHANGES.183

    r1032 r1036  
    7878    common cases by Sketch and Javelin. 
    7979  * 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. 
    8082  * Fixes from 1.8.2p6 
    8183 
  • 1.8.3/trunk/game/txt/hlp/pennv182.hlp

    r1032 r1036  
    55  * After many years of valuable work, Talek has retired from 
    66    development.   
    7  
    8 Minor changes: 
    9   * KEEPALIVE flag makes the server send a telnet NOP after 
    10     a short period of inactivity; helps prevent timeouts from 
    11     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 adequately 
    17     initialized on systems without /dev/urandom [SW] 
    18   * Infinite loop in math code. Reported by Ashen-Sugar. [GM] 
    19  
    20 & 1.8.2p5 
    21 Version 1.8.2 patchlevel 5                      June 13, 2007 
    227 
    238Minor changes: 
  • 1.8.3/trunk/game/txt/hlp/pennv183.hlp

    r1032 r1036  
    7575    common cases by Sketch and Javelin. 
    7676  * 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. 
    7779  * Fixes from 1.8.2p6 
    7880 
  • 1.8.3/trunk/src/attrib.c

    r1032 r1036  
    394394  do { \ 
    395395    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; \ 
    398398    } else { \ 
    399399        AL_FLAGS(atr) = flags; \