Date: Sun, 3 Jan 2016 16:13:03 +0000 (UTC) From: "Alexander V. Chernikov" <melifaro@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r293108 - head/sys/netinet Message-ID: <201601031613.u03GD3mG057208@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: melifaro Date: Sun Jan 3 16:13:03 2016 New Revision: 293108 URL: https://svnweb.freebsd.org/changeset/base/293108 Log: Fix fib4_lookup_nh_ext() flags/flowid order messed up while merging. Modified: head/sys/netinet/in_fib.c Modified: head/sys/netinet/in_fib.c ============================================================================== --- head/sys/netinet/in_fib.c Sun Jan 3 15:35:01 2016 (r293107) +++ head/sys/netinet/in_fib.c Sun Jan 3 16:13:03 2016 (r293108) @@ -175,8 +175,8 @@ fib4_lookup_nh_basic(uint32_t fibnum, st * - howewer mtu from "transmit" interface will be returned. */ int -fib4_lookup_nh_ext(uint32_t fibnum, struct in_addr dst, uint32_t flowid, - uint32_t flags, struct nhop4_extended *pnh4) +fib4_lookup_nh_ext(uint32_t fibnum, struct in_addr dst, uint32_t flags, + uint32_t flowid, struct nhop4_extended *pnh4) { struct radix_node_head *rh; struct radix_node *rn;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201601031613.u03GD3mG057208>