8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 08:03:04 +01:00

Fixed bug CORE-1223 : Wrong message in firebird.log on Open SuSe Linux 10.2 : Open file limit increased from 1024 to 0. Thanks to Ioannidis Dimitrios for help

This commit is contained in:
hvlad 2007-04-23 11:01:25 +00:00
parent 31a2c931c0
commit a9bf017e5c

View File

@ -3502,7 +3502,7 @@ static void init(void)
new_max.rlim_cur = new_max.rlim_max = old.rlim_max;
if (!setrlimit(RLIMIT_NOFILE, &new_max))
{
#if _FILE_OFFSET_BITS == 64 && defined SOLARIS
#if _FILE_OFFSET_BITS == 64
gds__log("64 bit i/o support is on.");
gds__log("Open file limit increased from %lld to %lld",
old.rlim_cur, new_max.rlim_cur);