diff options
author | Arjun Shankar <arjun@redhat.com> | 2023-10-02 14:55:22 +0200 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2023-10-24 12:30:59 +0200 |
commit | 3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87 (patch) | |
tree | fd8eb2d30fab083f918215fe11050a5318bd32ac /nss/Versions | |
parent | a7e8d0b90bc400b4d57afb01c1a54236a5c4754c (diff) | |
download | glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.tar glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.tar.gz glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.tar.bz2 glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.zip |
Move 'netgroup' routines from 'inet' into 'nss'
These netgroup routines are entry points for nss functionality.
This commit moves them along with netgroup.h from the 'inet'
subdirectory to 'nss', and adjusts any references accordingly.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'nss/Versions')
-rw-r--r-- | nss/Versions | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/nss/Versions b/nss/Versions index 74ba4470d8..4ddc018012 100644 --- a/nss/Versions +++ b/nss/Versions @@ -8,6 +8,7 @@ libc { # e* endgrent; + endnetgrent; endpwent; endspent; ether_hostton; ether_ntohost; @@ -23,6 +24,7 @@ libc { getgroups; gethostbyaddr; gethostbyaddr_r; gethostbyname; gethostbyname2; gethostbyname2_r; gethostbyname_r; gethostent; gethostent_r; + getnetgrent; getnetgrent_r; getpw; getpwent; getpwent_r; getpwnam; getpwnam_r; getpwuid; getpwuid_r; getspent; getspent_r; getspnam; getspnam_r; @@ -38,6 +40,7 @@ libc { # s* setgrent; + setnetgrent; setpwent; setspent; sgetspent; sgetspent_r; @@ -52,6 +55,7 @@ libc { GLIBC_2.1.2 { # g* getgrent_r; getgrgid_r; getgrnam_r; + getnetgrent_r; getpwent_r; getpwuid_r; getpwnam_r; getspent_r; getspnam_r; } @@ -181,6 +185,9 @@ libc { _nss_files_init; __merge_grp; __copy_grp; + + __internal_endnetgrent; __internal_getnetgrent_r; + __internal_setnetgrent; } } |