* process.c (get_sc_ngroups_max): return -1 if platform don't

support NGROUPS_MAX.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31088 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2011-03-10 16:26:01 +00:00
Родитель d49f0d9576
Коммит 4a8cf2d92d
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Fri Mar 11 01:25:03 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* process.c (get_sc_ngroups_max): return -1 if platform don't
support NGROUPS_MAX.
Thu Mar 10 22:28:15 2011 Tanaka Akira <akr@fsij.org>
* ext/openssl/ossl_ssl.h: parenthesize macro arguments.

Просмотреть файл

@ -4553,7 +4553,7 @@ static int get_sc_ngroups_max(void)
#elif defined(NGROUPS_MAX)
return (int)NGROUPS_MAX;
#else
return 32;
return -1;
#endif
}
static int maxgroups(void)