Re: [ovs-dev] [PATCH] util: Fix include for htonl().

2014-12-04 Thread Joe Stringer
Thanks, pushed to master and branch-2.3. On 4 December 2014 at 16:38, Jarno Rajahalme wrote: > LGTM, > > Jarno > > Acked-by: Jarno Rajahalme > > On Dec 4, 2014, at 4:26 PM, Joe Stringer wrote: > >> Commit 526a7c85d11dc "util: Add be32_prefix_mask()." added an include for >> byte-order.h into

Re: [ovs-dev] [PATCH] util: Fix include for htonl().

2014-12-04 Thread Jarno Rajahalme
LGTM, Jarno Acked-by: Jarno Rajahalme On Dec 4, 2014, at 4:26 PM, Joe Stringer wrote: > Commit 526a7c85d11dc "util: Add be32_prefix_mask()." added an include for > byte-order.h into util.h, which could cause link failures if users of > libopenvswitch defined their own version of htonll(). C

[ovs-dev] [PATCH] util: Fix include for htonl().

2014-12-04 Thread Joe Stringer
Commit 526a7c85d11dc "util: Add be32_prefix_mask()." added an include for byte-order.h into util.h, which could cause link failures if users of libopenvswitch defined their own version of htonll(). Change the include, as only htonl() is needed and arpa/inet.h provides this. Signed-off-by: Joe Stri