diff options
author | Arjun Shankar <arjun@redhat.com> | 2023-10-02 14:55:17 +0200 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2023-10-24 12:30:59 +0200 |
commit | 0ac35d181edd38563f95c3b38e74476bfbff76d3 (patch) | |
tree | 7f0cdb954a8d458a895d3aa138882b79397381d6 /nss/Versions | |
parent | 98b107e30848198e7128f80b38b406585f0317d6 (diff) | |
download | glibc-0ac35d181edd38563f95c3b38e74476bfbff76d3.zip glibc-0ac35d181edd38563f95c3b38e74476bfbff76d3.tar.gz glibc-0ac35d181edd38563f95c3b38e74476bfbff76d3.tar.bz2 |
Remove 'pwd' and merge into 'nss'
The majority of pwd routines are entry points for nss functionality.
This commit removes the 'pwd' subdirectory and moves all functionality
and tests to 'nss'. References to pwd/ are accordingly changed.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nss/Versions')
-rw-r--r-- | nss/Versions | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/nss/Versions b/nss/Versions index 6204ac0..58ca73c 100644 --- a/nss/Versions +++ b/nss/Versions @@ -8,19 +8,26 @@ libc { # e* endgrent; + endpwent; # f* fgetgrent; fgetgrent_r; + fgetpwent; fgetpwent_r; # g* getgrent; getgrent_r; getgrgid; getgrgid_r; getgrnam; getgrnam_r; getgroups; + getpw; getpwent; getpwent_r; getpwnam; getpwnam_r; getpwuid; getpwuid_r; # i* initgroups; + # p* + putpwent; + # s* setgrent; + setpwent; } GLIBC_2.1 { # p* @@ -29,6 +36,7 @@ libc { GLIBC_2.1.2 { # g* getgrent_r; getgrgid_r; getgrnam_r; + getpwent_r; getpwuid_r; getpwnam_r; } GLIBC_2.2.2 { __nss_hostname_digits_dots; |