]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
__libc_rpc_getport: Remove internal_function attribute
authorFlorian Weimer <fweimer@redhat.com>
Sun, 13 Aug 2017 19:11:06 +0000 (21:11 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Sun, 13 Aug 2017 19:11:06 +0000 (21:11 +0200)
This function has a hidden alias and is therefore expected to be
called across DSO boundaries.

ChangeLog
include/rpc/pmap_clnt.h
sunrpc/pm_getport.c

index d446b10506f07c973f8202d0af7befcba4bfd0a4..408c6f63bba4bb01aca102822bfced61943b2f06 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-13  Florian Weimer  <fweimer@redhat.com>
+
+       * include/rpc/pmap_clnt.h (__libc_rpc_getport): Remove
+       internal_function.
+       * sunrpoc/pm_getport.c (__libc_rpc_getport): Likewise.
+
 2017-08-13  Florian Weimer  <fweimer@redhat.com>
 
        * grp/grp-merge.h (__copy_grp, __merge_grp): Remove
index ec907c28ccd73e0231ffcf42652fc921dbf4997e..7928f0b368ae65b26c46fef60df8f285ad716d58 100644 (file)
@@ -12,8 +12,7 @@ extern int __get_socket (struct sockaddr_in *saddr)
      attribute_hidden internal_function;
 extern u_short __libc_rpc_getport (struct sockaddr_in *address, u_long program,
                                   u_long version, u_int protocol,
-                                  time_t timeout_sec, time_t tottimeout_sec)
-     internal_function;
+                                  time_t timeout_sec, time_t tottimeout_sec);
 libc_hidden_proto (__libc_rpc_getport)
 
 libc_hidden_proto (clnt_broadcast)
index 54d2e439d20319c3bac948f805ee75f1a6a5afdb..a9992a38ea17ffe9ee31cd0af25baf1e5c898bfb 100644 (file)
@@ -82,7 +82,6 @@ __get_socket (struct sockaddr_in *saddr)
  * Returns 0 if no map exists.
  */
 u_short
-internal_function
 __libc_rpc_getport (struct sockaddr_in *address, u_long program,
                    u_long version, u_int protocol, time_t timeout_sec,
                    time_t tottimeout_sec)