Remove __FBSDID from netbsd libc sourcesI added them per then-current practice when I imported them, but nowthey are just gratuious local diffs.Reviewed by: impDifferential Revision: https://re
Remove __FBSDID from netbsd libc sourcesI added them per then-current practice when I imported them, but nowthey are just gratuious local diffs.Reviewed by: impDifferential Revision: https://reviews.freebsd.org/D42686
show more ...
libc: More missing MLINKS.Differential Revision: https://reviews.freebsd.org/D42292
pwcache.3: Explicitly document OOM conditionThe pwcache functions allocate memory, and may return NULL pointers if thatallocation fails and the corresponding uid or gid was not found in the local
pwcache.3: Explicitly document OOM conditionThe pwcache functions allocate memory, and may return NULL pointers if thatallocation fails and the corresponding uid or gid was not found in the localpassword database. Document this behavior.Sponsored by: Dell EMC Isilon
Replace our version of the pwcache(3) API with NetBSD's implementation.This adds two features: * uid_from_user() and gid_from_group() as the reverse of user_from_uid() and groups_from_gid(). *
Replace our version of the pwcache(3) API with NetBSD's implementation.This adds two features: * uid_from_user() and gid_from_group() as the reverse of user_from_uid() and groups_from_gid(). * pwcache_userdb() and pwcache_groupdb() which allow alternative lookup functions to be used. For example lookups from passwd and group databases in a non-standard location.