coap: Use correct conversation_new() options

Fix conversation_new() options after they was changed/improved
in commit 709593ee.
This commit is contained in:
Stig Bjørlykke 2022-06-07 16:28:34 +02:00 committed by A Wireshark GitLab Utility
parent 4829f8c04e
commit ad7905e8da
1 changed files with 1 additions and 1 deletions

View File

@ -363,7 +363,7 @@ find_or_create_conversation_noaddrb(packet_info *pinfo, gboolean request)
/* No, this is a new conversation. */
conv = conversation_new(pinfo->num, &pinfo->src,
&pinfo->dst, conversation_pt_to_endpoint_type(pinfo->ptype),
pinfo->srcport, pinfo->destport, NO_ADDR_B|NO_PORT_B);
pinfo->srcport, pinfo->destport, NO_ADDR2|NO_PORT2);
}
} else {
/* fetch the conversation created by the TCP dissector */