diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nxt_php_sapi.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_php_sapi.c b/src/nxt_php_sapi.c index 3702c371..f5053652 100644 --- a/src/nxt_php_sapi.c +++ b/src/nxt_php_sapi.c @@ -892,7 +892,8 @@ nxt_inline void nxt_php_vcwd_chdir(nxt_unit_request_info_t *req, const nxt_str_t *dir) { if (nxt_slow_path(VCWD_CHDIR((char *) dir->start) != 0)) { - nxt_unit_req_alert(req, "failed to VCWD_CHDIR(%V) %E", dir, nxt_errno); + nxt_unit_req_alert(req, "VCWD_CHDIR(%s) failed (%d: %s)", + dir->start, errno, strerror(errno)); } } |