aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2005-10-26 19:01:29 +0000
committerAnders Broman <anders.broman@ericsson.com>2005-10-26 19:01:29 +0000
commit973bdcb50793ad5cac62de0d0b078c63a1fcb40d (patch)
treeaeb78068f39ca3548a125a29c7ab54aa9f7cd911 /epan
parent85cd6d8dc7ef7a5f0347c3c7eeed5cf69a10fe4c (diff)
From Mark C Brown,
Small patch correcting nettl.uid to unsigned and adding pduin/pduout as nettl.kind values... svn path=/trunk/; revision=16320
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-nettl.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/epan/dissectors/packet-nettl.c b/epan/dissectors/packet-nettl.c
index 64d0903c98..4f5888ed96 100644
--- a/epan/dissectors/packet-nettl.c
+++ b/epan/dissectors/packet-nettl.c
@@ -65,8 +65,10 @@ static gint ett_nettl = -1;
static const value_string trace_kind[] = {
{ 0x80000000, "Incoming Header" },
{ 0x40000000, "Outgoing Header" },
- { 0x20000000, "Incoming PDU" },
- { 0x10000000, "Outgoing PDU" },
+ { 0x20000000, "Incoming PDU - PDUIN" },
+ { 0x20000000, "PDUIN" },
+ { 0x10000000, "Outgoing PDU - PDUOUT" },
+ { 0x10000000, "PDUOUT" },
{ 0x08000000, "Procedure" },
{ 0x04000000, "State" },
{ 0x02000000, "Error" },
@@ -212,7 +214,7 @@ dissect_nettl(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
val_to_str(pinfo->pseudo_header->nettl.kind, trace_kind, "Unknown"));
proto_tree_add_int(nettl_tree, hf_nettl_pid, tvb,
0, 0, pinfo->pseudo_header->nettl.pid);
- proto_tree_add_int(nettl_tree, hf_nettl_uid, tvb,
+ proto_tree_add_uint(nettl_tree, hf_nettl_uid, tvb,
0, 0, pinfo->pseudo_header->nettl.uid);
}
@@ -289,7 +291,7 @@ proto_register_nettl(void)
"HP-UX Process/thread id", HFILL}},
{ &hf_nettl_uid,
- { "User ID (uid)", "nettl.uid", FT_INT16, BASE_DEC, NULL, 0x0,
+ { "User ID (uid)", "nettl.uid", FT_UINT16, BASE_DEC, NULL, 0x0,
"HP-UX User ID", HFILL}},
};