diff options
author | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2010-09-28 14:14:55 +0000 |
---|---|---|
committer | YASUOKA Masahiko <yasuoka@cvs.openbsd.org> | 2010-09-28 14:14:55 +0000 |
commit | a6aa13e6a2b21b1eef07718edda1dbd891d35517 (patch) | |
tree | 7b9ff680f8bbb7c549d31fa22cec6dbbfbb329b2 /sys/netinet | |
parent | d6ea21ae854b5232c50a8f7b7515ab129b30f9e7 (diff) |
wrap long line. correct indent. delete a useless comment.
OK djm@ claudio@ dlg@
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_gre.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/netinet/ip_gre.c b/sys/netinet/ip_gre.c index 43cdfb0b039..ce5fb8b2a3e 100644 --- a/sys/netinet/ip_gre.c +++ b/sys/netinet/ip_gre.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_gre.c,v 1.39 2010/09/24 14:50:30 hsuenaga Exp $ */ +/* $OpenBSD: ip_gre.c,v 1.40 2010/09/28 14:14:54 yasuoka Exp $ */ /* $NetBSD: ip_gre.c,v 1.9 1999/10/25 19:18:11 drochner Exp $ */ /* @@ -463,7 +463,8 @@ gre_usrreq(struct socket *so, int req, struct mbuf *m, struct mbuf *nam, ina_dst = &sin4->sin_addr; } if (ina_dst != NULL && - (session = pipex_pptp_userland_lookup_session_ipv4(m, *ina_dst))) + (session = pipex_pptp_userland_lookup_session_ipv4(m, + *ina_dst))) m = pipex_pptp_userland_output(m, session); splx(s); |