Add an hf[] entry for the OPT_FRAG_OFF field of the OPT_FRAGMENT option
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 19 Dec 2003 22:46:16 +0000 (22:46 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 19 Dec 2003 22:46:16 +0000 (22:46 +0000)
(the hf_ variable for it existed, but there was no hf[] entry, so it
didn't get initialized).

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9362 f5534014-38df-0310-8fa8-9805f1628bb7

packet-pgm.c

index 8950dd39b1c0bad07c98c04319358024412d9562..51126dd38a4129d9c9720310e00f8ea9f282bd04 100644 (file)
@@ -1,7 +1,7 @@
 /* packet-pgm.c
- * Routines for pgm packet disassembly
+ * Routines for PGM packet disassembly, RFC 3208
  *
- * $Id: packet-pgm.c,v 1.21 2003/09/03 20:58:09 guy Exp $
+ * $Id: packet-pgm.c,v 1.22 2003/12/19 22:46:16 guy Exp $
  *
  * Copyright (c) 2000 by Talarian Corp
  *
@@ -1714,6 +1714,9 @@ proto_register_pgm(void)
     { &hf_pgm_opt_fragment_first_sqn,
       { "First Sequence Number", "pgm.opts.fragment.first_sqn", FT_UINT32, BASE_HEX,
          NULL, 0x0, "", HFILL }},
+    { &hf_pgm_opt_fragment_offset,
+      { "Fragment Offset", "pgm.opts.fragment.fragment_offset", FT_UINT32, BASE_DEC,
+         NULL, 0x0, "", HFILL }},
     { &hf_pgm_opt_fragment_total_length,
       { "Total Length", "pgm.opts.fragment.total_length", FT_UINT32, BASE_DEC,
          NULL, 0x0, "", HFILL }},