Skip to content

Commit 8667dc9

Browse files
committed
Merge branch 'PHP-8.0'
* PHP-8.0: Fix misleading error message
2 parents f11411e + 0f40426 commit 8667dc9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/fpm/fpm/fpm_unix.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ int fpm_unix_init_main() /* {{{ */
458458
r.rlim_max = r.rlim_cur = (rlim_t) fpm_global_config.rlimit_files;
459459

460460
if (0 > setrlimit(RLIMIT_NOFILE, &r)) {
461-
zlog(ZLOG_SYSERROR, "failed to set rlimit_core for this pool. Please check your system limits or decrease rlimit_files. setrlimit(RLIMIT_NOFILE, %d)", fpm_global_config.rlimit_files);
461+
zlog(ZLOG_SYSERROR, "failed to set rlimit_files for this pool. Please check your system limits or decrease rlimit_files. setrlimit(RLIMIT_NOFILE, %d)", fpm_global_config.rlimit_files);
462462
return -1;
463463
}
464464
}

0 commit comments

Comments
 (0)