From ccddeb994bbae82d55c3734b613368125d843e9f Mon Sep 17 00:00:00 2001 From: Donald Sharp Date: Fri, 7 Apr 2017 13:34:01 -0400 Subject: [PATCH] bgpd: Switch u_int64_t -> uint64_t Apparently u_int64_t is not available( or we don't pull the right headers in for solaris based systems). Signed-off-by: Donald Sharp --- bgpd/bgp_attr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index e0dac354fb..d57e944aa0 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -163,7 +163,7 @@ struct attr unsigned long refcnt; /* Flag of attribute is set or not. */ - u_int64_t flag; + uint64_t flag; /* Apart from in6_addr, the remaining static attributes */ struct in_addr nexthop; -- 2.39.5