else {
ap_note_subprocess(r->pool, &procnew, kill_after_timeout);
/* Fill in BUFF structure for parents pipe to child's stdout */
- file = procnew.stdout;
+ file = procnew.out;
iol = ap_create_file_iol(file);
if (!iol)
return APR_EBADF;
ap_note_subprocess(p, &procnew, kill_after_timeout);
/* Fill in BUFF structure for parents pipe to child's stdout */
- file = procnew.stdout;
+ file = procnew.out;
iol = ap_create_file_iol(file);
if (!iol)
return APR_EBADF;
ap_bsetopt(*script_in, BO_TIMEOUT, &r->server->timeout);
/* Fill in BUFF structure for parents pipe to child's stdin */
- file = procnew.stdin;
+ file = procnew.in;
iol = ap_create_file_iol(file);
if (!iol)
return APR_EBADF;
ap_bsetopt(*script_out, BO_TIMEOUT, &r->server->timeout);
/* Fill in BUFF structure for parents pipe to child's stderr */
- file = procnew.stderr;
+ file = procnew.err;
iol = ap_create_file_iol(file);
if (!iol)
return APR_EBADF;
if (rc == APR_SUCCESS) {
ap_note_subprocess(p, &procnew, kill_after_timeout);
- (*fpin) = procnew.stdin;
+ (*fpin) = procnew.in;
}
}