Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=f424bb9efaee90b752aabcb4e5e95920ee9580bb
Commit:     f424bb9efaee90b752aabcb4e5e95920ee9580bb
Parent:     e4223976341ffb22fabe5b3a69873966808c83aa
Author:     Al Viro <[EMAIL PROTECTED]>
AuthorDate: Fri Aug 24 23:04:18 2007 -0700
Committer:  David S. Miller <[EMAIL PROTECTED]>
CommitDate: Sun Aug 26 18:35:42 2007 -0700

    [PPPOL2TP]: Fix endianness annotations.
    
    {s,d}_{session,tunnel} in pppol2tp_addr are actually host-endian
    everywhere.  We might switch them to net-endian, of course, but
    that structure is exposed to userland via getname...
    
    Signed-off-by: Al Viro <[EMAIL PROTECTED]>
    Signed-off-by: David S. Miller <[EMAIL PROTECTED]>
---
 include/linux/if_pppol2tp.h |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/linux/if_pppol2tp.h b/include/linux/if_pppol2tp.h
index 516203b..a7d6a22 100644
--- a/include/linux/if_pppol2tp.h
+++ b/include/linux/if_pppol2tp.h
@@ -32,8 +32,8 @@ struct pppol2tp_addr
 
        struct sockaddr_in addr;        /* IP address and port to send to */
 
-       __be16 s_tunnel, s_session;     /* For matching incoming packets */
-       __be16 d_tunnel, d_session;     /* For sending outgoing packets */
+       __u16 s_tunnel, s_session;      /* For matching incoming packets */
+       __u16 d_tunnel, d_session;      /* For sending outgoing packets */
 };
 
 /* Socket options:
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to