aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipv6.c
diff options
context:
space:
mode:
authoritojun <itojun@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-15 16:59:12 +0000
committeritojun <itojun@f5534014-38df-0310-8fa8-9805f1628bb7>1999-10-15 16:59:12 +0000
commitcdd4f0053742979df9dc2bb7803f6bdaafdbb949 (patch)
treeb40e550253e037f6dca7d0d8ed8135e5cf0ba39c /packet-ipv6.c
parentc4905fa54f31478288f3b7b832b11479a8f249ad (diff)
add missing termination to value_string.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@842 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ipv6.c')
-rw-r--r--packet-ipv6.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-ipv6.c b/packet-ipv6.c
index 62dbf5ac0f..382d4666e7 100644
--- a/packet-ipv6.c
+++ b/packet-ipv6.c
@@ -1,7 +1,7 @@
/* packet-ipv6.c
* Routines for IPv6 packet disassembly
*
- * $Id: packet-ipv6.c,v 1.22 1999/10/15 05:30:41 itojun Exp $
+ * $Id: packet-ipv6.c,v 1.23 1999/10/15 16:59:12 itojun Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -157,6 +157,7 @@ dissect_opts(const u_char *pd, int offset, frame_data *fd, proto_tree *tree,
static const value_string rtalertvals[] = {
{ IP6OPT_RTALERT_MLD, "MLD" },
{ IP6OPT_RTALERT_RSVP, "RSVP" },
+ { 0, NULL },
};
memcpy(&ext, (void *) &pd[offset], sizeof(ext));