The Originator protocol identifier is not present in the "provisioning actions operation -61", only the "session management operatin -60". Fixes https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6570.

svn path=/trunk/; revision=39834
This commit is contained in:
Chris Maynard 2011-11-14 19:57:45 +00:00
parent 07c90fb536
commit 5facddf760
1 changed files with 4 additions and 2 deletions

View File

@ -1681,10 +1681,12 @@ add_6xO(proto_tree *tree, tvbuff_t *tvb, guint8 OT)
UcpHandleString(hf_ucp_parm_LAdC);
UcpHandleByte(hf_ucp_parm_LTON);
UcpHandleByte(hf_ucp_parm_LNPI);
UcpHandleInt(hf_ucp_parm_OPID);
if (OT == 60) {
UcpHandleInt(hf_ucp_parm_OPID);
}
UcpHandleData(hf_ucp_parm_RES1);
if (OT == 61) {
UcpHandleData(hf_ucp_parm_RES2);
UcpHandleData(hf_ucp_parm_RES2);
}
}