diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-09-26 22:13:54 -0700 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-09-28 17:54:12 -0700 |
commit | ed49e3caaa6126f8e29f08e8b4fdcafcae431b57 (patch) | |
tree | 0b61555bf757e8b708f0e949fcf1d36d593ce98e /include | |
parent | ff428d72c59b35e4ba34bc1b487e707648010fe3 (diff) | |
download | op-kernel-dev-ed49e3caaa6126f8e29f08e8b4fdcafcae431b57.zip op-kernel-dev-ed49e3caaa6126f8e29f08e8b4fdcafcae431b57.tar.gz |
[IPV4]: fib_hn ->nh_gw is net-endian
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/net/ip_fib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/ip_fib.h b/include/net/ip_fib.h index c4eca25..9f84e9f 100644 --- a/include/net/ip_fib.h +++ b/include/net/ip_fib.h @@ -63,7 +63,7 @@ struct fib_nh { __u32 nh_tclassid; #endif int nh_oif; - u32 nh_gw; + __be32 nh_gw; }; /* |