PennMUSH Community

Changeset 1049

Show
Ignore:
Timestamp:
07/12/07 13:24:01 (1 year ago)
Author:
shawnw
Message:

#7411: no ssl compile fix

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/CHANGES.183

    r1048 r1049  
    2323Fixes: 
    2424 * decode64() does better validation of its input.  
    25  * Win32 compile fixes by Intrevis. 
     25 * Various compile fixes reported by Interevis and Kimiko. 
     26   Win32 patched by Intrevis. 
    2627 
    2728Version 1.8.3 patchlevel 4                      July 9, 2007 
  • 1.8.3/branches/devel/src/bsd.c

    r1048 r1049  
    15961596  for (qp = &d->output.head; ((cur = *qp) != NULL);) { 
    15971597#ifdef HAVE_WRITEV 
    1598     if (cur->nxt && !d->ssl) { 
     1598    if (cur->nxt 
     1599#ifdef HAVE_SSL 
     1600        && !d->ssl 
     1601#endif 
     1602        ) { 
    15991603      /* If there's more than one pending block, try to send up to 10 
    16001604         at once with writev(). Doesn't work for SSL connections, and