diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-09-28 15:15:07 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-09-28 15:15:07 +0200 |
commit | 43e0cb65191ec67aa05bf6df19e45483cc02bec5 (patch) | |
tree | 33bf358703651f6331a7f4a564d1a53e9744c60b /src/libipsec/ip_packet.c | |
parent | 9fa335cb1b8fd92a60b5a1ae5f25a03b9d3ec030 (diff) | |
download | strongswan-43e0cb65191ec67aa05bf6df19e45483cc02bec5.tar.bz2 strongswan-43e0cb65191ec67aa05bf6df19e45483cc02bec5.tar.xz |
Fix parsing of IPv6 headers in ip_packet_t
Diffstat (limited to 'src/libipsec/ip_packet.c')
-rw-r--r-- | src/libipsec/ip_packet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libipsec/ip_packet.c b/src/libipsec/ip_packet.c index 52aeaa209..096ca33a8 100644 --- a/src/libipsec/ip_packet.c +++ b/src/libipsec/ip_packet.c @@ -161,6 +161,7 @@ ip_packet_t *ip_packet_create(chunk_t packet) dst = host_create_from_chunk(AF_INET6, chunk_from_thing(ip->ip6_dst), 0); next_header = ip->ip6_nxt; + break; } #endif /* HAVE_NETINET_IP6_H */ default: |