summaryrefslogtreecommitdiff
path: root/zebra/kernel_socket.c
diff options
context:
space:
mode:
authorDavid Lamparter <equinox@opensourcerouting.org>2015-04-10 09:14:58 +0200
committerDaniel Walton <dwalton@cumulusnetworks.com>2016-05-26 15:33:29 +0000
commit07e54734a1be148dcd87f2edc8b0a35e71e13985 (patch)
tree7160aa32bec736a9c1c621e1254ee26ee474c39e /zebra/kernel_socket.c
parente7f0e649dd534785ba86def26d6c41aa57a6cf13 (diff)
zebra: static int inline -> static inline int
The BSD socket kernel interface had some weird ordering of function attribute keywords. ("static int inline foobar()") Signed-off-by: David Lamparter <equinox@opensourcerouting.org> (cherry picked from commit 3e9e2c9fb66895df42159b98a3743e25399760df)
Diffstat (limited to 'zebra/kernel_socket.c')
-rw-r--r--zebra/kernel_socket.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/zebra/kernel_socket.c b/zebra/kernel_socket.c
index b00f9fbdff..2a24fbecf5 100644
--- a/zebra/kernel_socket.c
+++ b/zebra/kernel_socket.c
@@ -130,7 +130,7 @@ extern struct zebra_privs_t zserv_privs;
* 2. So the compiler doesn't complain when DEST is NULL, which is only true
* when we are skipping the copy and incrementing to the next SA
*/
-static void inline
+static inline void
rta_copy (union sockunion *dest, caddr_t src) {
int len;
#ifdef HAVE_STRUCT_SOCKADDR_SA_LEN
@@ -280,7 +280,7 @@ int routing_sock = -1;
/* #define DEBUG */
/* Supported address family check. */
-static int inline
+static inline int
af_check (int family)
{
if (family == AF_INET)