Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 42362
b: refs/heads/master
c: 87fcd70
h: refs/heads/master
v: v3
  • Loading branch information
Al Viro authored and Linus Torvalds committed Dec 5, 2006
1 parent 08267ca commit 7421721
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 91f433cacc9d1ae95ae46ce26d7bcf3a724c72d0
refs/heads/master: 87fcd70d983d30eca4b933fff2e97d9a31743d0a
2 changes: 1 addition & 1 deletion trunk/security/selinux/avc.c
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ static inline void avc_print_ipv6_addr(struct audit_buffer *ab,
audit_log_format(ab, " %s=%d", name2, ntohs(port));
}

static inline void avc_print_ipv4_addr(struct audit_buffer *ab, u32 addr,
static inline void avc_print_ipv4_addr(struct audit_buffer *ab, __be32 addr,
__be16 port, char *name1, char *name2)
{
if (addr)
Expand Down
2 changes: 1 addition & 1 deletion trunk/security/selinux/hooks.c
Original file line number Diff line number Diff line change
Expand Up @@ -3537,7 +3537,7 @@ static int selinux_socket_sock_rcv_skb(struct sock *sk, struct sk_buff *skb)
goto out;

/* Handle mapped IPv4 packets arriving via IPv6 sockets */
if (family == PF_INET6 && skb->protocol == ntohs(ETH_P_IP))
if (family == PF_INET6 && skb->protocol == htons(ETH_P_IP))
family = PF_INET;

AVC_AUDIT_DATA_INIT(&ad, NET);
Expand Down
8 changes: 4 additions & 4 deletions trunk/security/selinux/include/avc.h
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ struct avc_audit_data {
char *netif;
struct sock *sk;
u16 family;
u16 dport;
u16 sport;
__be16 dport;
__be16 sport;
union {
struct {
u32 daddr;
u32 saddr;
__be32 daddr;
__be32 saddr;
} v4;
struct {
struct in6_addr daddr;
Expand Down

0 comments on commit 7421721

Please sign in to comment.