Skip to content

Commit 263f14a

Browse files
committed
Fix misleading error message
Closes GH-6889.
1 parent ea3c992 commit 263f14a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sapi/fpm/fpm/fpm_unix.c

Lines changed: 1 addition & 1 deletion
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)