From 2ec49c1dfd386b43c4822bc94b0502d2a29c6342 Mon Sep 17 00:00:00 2001 From: GNU Libc Maintainers Date: Tue, 21 Nov 2017 23:14:20 +0000 Subject: [PATCH] git-__inet6_scopeid_pton commit f87cc2bfba9b844da48a63441c6099342b1551c7 Author: Florian Weimer Date: Thu Aug 10 16:06:52 2017 +0200 __inet6_scopeid_pton: Remove attribute_hidden, internal_function The hidden attribute was overridden by libc_hidden_proto on GNU/Linux. It is incorrect because the function is used from nscd. internal_function is not supposed to be used across DSO boundaries, so this commit removes it (again, due to the use in nscd). Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name git-__inet6_scopeid_pton.diff --- inet/inet6_scopeid_pton.c | 2 +- inet/net-internal.h | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/inet/inet6_scopeid_pton.c b/inet/inet6_scopeid_pton.c index f842ffcad..b4f239faa 100644 --- a/inet/inet6_scopeid_pton.c +++ b/inet/inet6_scopeid_pton.c @@ -28,7 +28,7 @@ /* Parse SOURCE as a scope ID for ADDRESS. Return 0 on success and -1 on error. */ -internal_function int +int __inet6_scopeid_pton (const struct in6_addr *address, const char *scope, uint32_t *result) { diff --git a/inet/net-internal.h b/inet/net-internal.h index 2b2632c7b..b2135893e 100644 --- a/inet/net-internal.h +++ b/inet/net-internal.h @@ -25,8 +25,7 @@ #include int __inet6_scopeid_pton (const struct in6_addr *address, - const char *scope, uint32_t *result) - internal_function attribute_hidden; + const char *scope, uint32_t *result); libc_hidden_proto (__inet6_scopeid_pton) -- 2.30.2