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 /include | |
parent | a7e8d0b90bc400b4d57afb01c1a54236a5c4754c (diff) | |
download | glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.tar.gz glibc-3f7c7ac887f9d0f5d41b3c7d698fe8df939c0a87.tar.xz 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 'include')
-rw-r--r-- | include/netdb.h | 2 | ||||
-rw-r--r-- | include/netgroup.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/netdb.h b/include/netdb.h index 4dcdbb8cd4..1b25837b4b 100644 --- a/include/netdb.h +++ b/include/netdb.h @@ -211,7 +211,7 @@ libanl_hidden_proto (__gai_suspend_time64) #define AI_DEFAULT (AI_V4MAPPED | AI_ADDRCONFIG) -#include <inet/netgroup.h> +#include <nss/netgroup.h> extern enum nss_status _nss_netgroup_parseline (char **cursor, struct __netgrent *result, diff --git a/include/netgroup.h b/include/netgroup.h index 4b2b284cdb..40a5d1a65e 100644 --- a/include/netgroup.h +++ b/include/netgroup.h @@ -1 +1 @@ -#include <inet/netgroup.h> +#include <nss/netgroup.h> |