Changeset 1882

Show
Ignore:
Timestamp:
07/17/2007 06:02:33 PM (15 months ago)
Author:
jan
Message:

* fixed crash on 32bit archs when debug-msgs are printed in mod_scgi,

mod_fastcgi and mod_webdav (#1263)

Location:
branches/lighttpd-1.4.x
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • branches/lighttpd-1.4.x/NEWS

    r1879 r1882  
    2222  * fixed check on stale errno values, which broke handling of broken fastcgi 
    2323    applications. (#1245) 
     24  * fixed crash on 32bit archs when debug-msgs are printed in mod_scgi, mod_fastcgi  
     25    and mod_webdav (#1263) 
    2426 
    2527- 1.4.15 - 2007-04-13 
  • branches/lighttpd-1.4.x/src/mod_fastcgi.c

    r1879 r1882  
    29652965                                 */ 
    29662966 
    2967                                 log_error_write(srv, __FILE__, __LINE__, "ssdsd", 
     2967                                log_error_write(srv, __FILE__, __LINE__, "ssosd", 
    29682968                                                "[REPORT ME] connection was dropped after accept(). reconnect() denied:", 
    29692969                                                "write-offset:", hctx->wb->bytes_out, 
  • branches/lighttpd-1.4.x/src/mod_scgi.c

    r1872 r1882  
    22872287                                 */ 
    22882288 
    2289                                 log_error_write(srv, __FILE__, __LINE__, "ssdsd", 
     2289                                log_error_write(srv, __FILE__, __LINE__, "ssosd", 
    22902290                                                "[REPORT ME] connection was dropped after accept(). reconnect() denied:", 
    22912291                                                "write-offset:", hctx->wb->bytes_out, 
     
    25372537                                } 
    25382538 
    2539                                 log_error_write(srv, __FILE__, __LINE__, "sdsdsd", 
     2539                                log_error_write(srv, __FILE__, __LINE__, "sosdsd", 
    25402540                                                "response not sent, request sent:", hctx->wb->bytes_out, 
    25412541                                                "connection-fd:", con->fd, 
  • branches/lighttpd-1.4.x/src/mod_webdav.c

    r1743 r1882  
    10361036 
    10371037                        if (XML_ERR_OK != (err = xmlParseChunk(ctxt, c->file.mmap.start + c->offset, weHave, 0))) { 
    1038                                 log_error_write(srv, __FILE__, __LINE__, "sddd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err); 
     1038                                log_error_write(srv, __FILE__, __LINE__, "sodd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err); 
    10391039                        } 
    10401040 
     
    10541054 
    10551055                        if (XML_ERR_OK != (err = xmlParseChunk(ctxt, c->mem->ptr + c->offset, weHave, 0))) { 
    1056                                 log_error_write(srv, __FILE__, __LINE__, "sddd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err); 
     1056                                log_error_write(srv, __FILE__, __LINE__, "sodd", "xmlParseChunk failed at:", cq->bytes_out, weHave, err); 
    10571057                        } 
    10581058