am 0a7fe991: am 5217fb52: Merge "Fix sysconf(3) for _SC_GETGR_R_SIZE_MAX and _SC_GETPW_R_SIZE_MAX."

* commit '0a7fe991530308fbae9ca033c0045bfc27a7f4c1':
  Fix sysconf(3) for _SC_GETGR_R_SIZE_MAX and _SC_GETPW_R_SIZE_MAX.
This commit is contained in:
Elliott Hughes 2013-05-14 18:11:57 -07:00 committed by Android Git Automerger
commit 217c816480

View File

@ -298,8 +298,8 @@ int sysconf(int name) {
case _SC_TIMERS: return _POSIX_TIMERS;
#endif
// GETGR_R_SIZE_MAX ?
// GETPW_R_SIZE_MAX ?
case _SC_GETGR_R_SIZE_MAX: return 1024;
case _SC_GETPW_R_SIZE_MAX: return 1024;
case _SC_LOGIN_NAME_MAX: return SYSTEM_LOGIN_NAME_MAX;