]> sourceware.org Git - glibc.git/commitdiff
__netlink_assert_response: Remove internal_function attribute
authorFlorian Weimer <fweimer@redhat.com>
Sun, 13 Aug 2017 19:11:28 +0000 (21:11 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Sun, 13 Aug 2017 19:11:28 +0000 (21:11 +0200)
This function is called from nscd and should not use a non-standard
calling convention.

ChangeLog
sysdeps/unix/sysv/linux/netlink_assert_response.c
sysdeps/unix/sysv/linux/netlinkaccess.h

index 408c6f63bba4bb01aca102822bfced61943b2f06..b5526501e3264d968496bdf908eba1c90de7a491 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2017-08-13  Florian Weimer  <fweimer@redhat.com>
+
+       * sysdeps/unix/sysv/linux/netlinkaccess.h
+       (__netlink_assert_response): Remove internal_function.
+       * sysdeps/unix/sysv/linux/netlink_assert_response.c
+       (__netlink_assert_response): Likewise.
+
 2017-08-13  Florian Weimer  <fweimer@redhat.com>
 
        * include/rpc/pmap_clnt.h (__libc_rpc_getport): Remove
index d60eb1515ed622bd2b9bf9433b531dbe7c9f9245..39eacb1441ef089747c8da8f8a7177ee9e53d5e9 100644 (file)
@@ -39,7 +39,6 @@ get_address_family (int fd)
 }
 
 void
-internal_function
 __netlink_assert_response (int fd, ssize_t result)
 {
   if (result < 0)
index 6cffb65b14190cfa53382754e83163cee6876e57..66bbbe61588feaf7ac49b92b5769aacc011b3547 100644 (file)
@@ -51,8 +51,7 @@ extern int __netlink_request (struct netlink_handle *h, int type);
 
 /* Terminate the process if RESULT is an invalid recvmsg result for
    the netlink socket FD.  */
-void __netlink_assert_response (int fd, ssize_t result)
-  internal_function;
+void __netlink_assert_response (int fd, ssize_t result);
 libc_hidden_proto (__netlink_assert_response)
 
 #endif /* netlinkaccess.h */
This page took 0.051943 seconds and 5 git commands to generate.