diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2006-11-20 18:08:37 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-02 21:27:21 -0800 |
commit | 66625984ca94552f75836596e0e83f3e5594bd58 (patch) | |
tree | a7763abbe0dc693138c62bfa303afca778b19369 | |
parent | 5e57dff2c49956e24f27f9b6d2ec0db967680c39 (diff) | |
download | op-kernel-dev-66625984ca94552f75836596e0e83f3e5594bd58.zip op-kernel-dev-66625984ca94552f75836596e0e83f3e5594bd58.tar.gz |
[CIPSO]: Missing annotation in cipso_ipv4 update.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | net/ipv4/cipso_ipv4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/cipso_ipv4.c b/net/ipv4/cipso_ipv4.c index a60af83..f3957cf 100644 --- a/net/ipv4/cipso_ipv4.c +++ b/net/ipv4/cipso_ipv4.c @@ -1135,7 +1135,7 @@ int cipso_v4_validate(unsigned char **option) } rcu_read_lock(); - doi_def = cipso_v4_doi_search(ntohl(*((u32 *)&opt[2]))); + doi_def = cipso_v4_doi_search(ntohl(*((__be32 *)&opt[2]))); if (doi_def == NULL) { err_offset = 2; goto validate_return_locked; |