aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2005-11-28 00:41:01 +0000
committerGuy Harris <guy@alum.mit.edu>2005-11-28 00:41:01 +0000
commit96c28846410ec4e867d15a85436b402f67f8db9a (patch)
tree0a53a0c099537530ae85e4bb393db003e39d7d2e /epan
parent2646996a825de472f89d394fd2cf3d91483c58c5 (diff)
Host-Uniq is binary, not text.
FT_BYTES items don't have a base - the bytes are always dumped in hex - so use BASE_NONE with them. svn path=/trunk/; revision=16611
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-pppoe.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-pppoe.c b/epan/dissectors/packet-pppoe.c
index c4e25980ba..8cf214aa92 100644
--- a/epan/dissectors/packet-pppoe.c
+++ b/epan/dissectors/packet-pppoe.c
@@ -339,12 +339,12 @@ void proto_register_pppoed(void)
}
},
{ &hf_pppoed_tag_host_uniq,
- { "Host-Uniq", "pppoed.tags.host_uniq", FT_STRING, BASE_NONE,
+ { "Host-Uniq", "pppoed.tags.host_uniq", FT_BYTES, BASE_NONE,
NULL, 0x0, "", HFILL
}
},
{ &hf_pppoed_tag_ac_cookie,
- { "AC-Cookie", "pppoed.tags.ac_cookie", FT_BYTES, BASE_HEX,
+ { "AC-Cookie", "pppoed.tags.ac_cookie", FT_BYTES, BASE_NONE,
NULL, 0x0, "", HFILL
}
},
@@ -359,7 +359,7 @@ void proto_register_pppoed(void)
}
},
{ &hf_pppoed_tag_relay_session_id,
- { "Relay-Session-Id", "pppoed.tags.relay_session_id", FT_BYTES, BASE_HEX,
+ { "Relay-Session-Id", "pppoed.tags.relay_session_id", FT_BYTES, BASE_NONE,
NULL, 0x0, "", HFILL
}
},