From d20a8b97cff1ece0ee570f1d4a4ad99497eb651b Mon Sep 17 00:00:00 2001 From: dchri Date: Tue, 17 Jul 2007 10:12:39 +0000 Subject: [PATCH] Backported fix for CORE-1223. --- src/jrd/gds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jrd/gds.cpp b/src/jrd/gds.cpp index e938fd8bcb..34eccbcddf 100644 --- a/src/jrd/gds.cpp +++ b/src/jrd/gds.cpp @@ -3551,7 +3551,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);