diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:55:27 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-19 07:56:21 +0200 |
commit | 762a2b2d341a9d6a4ea088479616907c5b4e9a7b (patch) | |
tree | ac4897b58ae029f947c3033444044e1c54ad3389 /resolv/Makefile | |
parent | 08d4a98070c4c4f69c6d04f483d105121effba08 (diff) | |
download | glibc-762a2b2d341a9d6a4ea088479616907c5b4e9a7b.tar glibc-762a2b2d341a9d6a4ea088479616907c5b4e9a7b.tar.gz glibc-762a2b2d341a9d6a4ea088479616907c5b4e9a7b.tar.bz2 glibc-762a2b2d341a9d6a4ea088479616907c5b4e9a7b.zip |
resolv: Move ns_samename into its own file, and into libc
But only as an internal symbol, __libc_ns_samename. The libresolv
ABI is preserved. This is because the function is deprecated, and
it does not make sense to add new symbol versions for deprecated
functions.
Also reformat the implementation to GNU style.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
Diffstat (limited to 'resolv/Makefile')
-rw-r--r-- | resolv/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/resolv/Makefile b/resolv/Makefile index d1ad5e4cba..744da951ae 100644 --- a/resolv/Makefile +++ b/resolv/Makefile @@ -43,6 +43,7 @@ routines := \ ns_name_skip \ ns_name_uncompress \ ns_name_unpack \ + ns_samename \ nsap_addr \ res-close \ res-name-checking \ |