Ticket #998: lighttpd-fastcgi-quiet-error.patch

File lighttpd-fastcgi-quiet-error.patch, 369 bytes (added by carenas@…, 21 months ago)

patch for lighttpd 1.5 (trunk)'s mod_fastcgi to skip printing empty error packets

  • trunk/src/mod_fastcgi.c

     
    24072407                        } 
    24082408                        break; 
    24092409                case FCGI_STDERR: 
     2410                        if (packet.len == 0) break; 
     2411 
    24102412                        log_error_write(srv, __FILE__, __LINE__, "sb", 
    24112413                                        "FastCGI-stderr:", packet.b); 
    24122414