View | Details | Raw Unified | Return to bug 56858
Collapse All | Expand All

(-)a/modules/proxy/mod_proxy_fcgi.c (-1 / +3 lines)
Lines 664-671 recv_again: Link Here
664
            case AP_FCGI_STDERR:
664
            case AP_FCGI_STDERR:
665
                /* TODO: Should probably clean up this logging a bit... */
665
                /* TODO: Should probably clean up this logging a bit... */
666
                if (clen) {
666
                if (clen) {
667
                    char c = iobuf[readbuflen - 1];
668
                    iobuf[readbuflen - 1] = '\0';
667
                    ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01071)
669
                    ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r, APLOGNO(01071)
668
                                  "Got error '%s'", iobuf);
670
                                  "Got error '%s%c'", iobuf, c);
669
                }
671
                }
670
672
671
                if (clen > readbuflen) {
673
                if (clen > readbuflen) {

Return to bug 56858