diff options
Diffstat (limited to 'epan/dissectors/packet-dcerpc.c')
-rw-r--r-- | epan/dissectors/packet-dcerpc.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/epan/dissectors/packet-dcerpc.c b/epan/dissectors/packet-dcerpc.c index 8c0151f54e..e9eea18ae0 100644 --- a/epan/dissectors/packet-dcerpc.c +++ b/epan/dissectors/packet-dcerpc.c @@ -2723,7 +2723,7 @@ PIDL_dissect_cvstring(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_tree } /* Save string to dcv->private_data */ if ((param & PIDL_STR_SAVE) - && (!pinfo->fd->flags.visited)) { + && (!pinfo->fd->visited)) { dcerpc_call_value *dcv = (dcerpc_call_value *)di->call_data; dcv->private_data = wmem_strdup(wmem_file_scope(), s); } @@ -3112,7 +3112,7 @@ add_pointer_to_list(packet_info *pinfo, proto_tree *tree, proto_item *item, value = di->call_data; if (di->ptype == PDU_REQ) { - if (!(pinfo->fd->flags.visited)) { + if (!(pinfo->fd->visited)) { if (id > value->max_ptr) { value->max_ptr = id; } @@ -4063,7 +4063,7 @@ dissect_dcerpc_cn_bind(tvbuff_t *tvb, gint offset, packet_info *pinfo, match to the interface. XXX We assume that BINDs will NEVER be fragmented. */ - if (!(pinfo->fd->flags.visited)) { + if (!(pinfo->fd->visited)) { dcerpc_bind_key *key; dcerpc_bind_value *value; @@ -4356,7 +4356,7 @@ dissect_dcerpc_cn_stub(tvbuff_t *tvb, int offset, packet_info *pinfo, and if so dissect the full pdu. then exit */ - if (pinfo->fd->flags.visited) { + if (pinfo->fd->visited) { fd_head = fragment_get_reassembled(&dcerpc_co_reassembly_table, frame); goto end_cn_stub; } @@ -4519,7 +4519,7 @@ dissect_dcerpc_cn_rqst(tvbuff_t *tvb, gint offset, packet_info *pinfo, dcerpc_matched_key matched_key, *new_matched_key; dcerpc_call_value *value; - /* !!! we can NOT check flags.visited here since this will interact + /* !!! we can NOT check visited here since this will interact badly with when SMB handles (i.e. calls the subdissector) and desegmented pdu's . Instead we check if this pdu is already in the matched table or not @@ -4684,7 +4684,7 @@ dissect_dcerpc_cn_resp(tvbuff_t *tvb, gint offset, packet_info *pinfo, } else { dcerpc_matched_key matched_key, *new_matched_key; - /* !!! we can NOT check flags.visited here since this will interact + /* !!! we can NOT check visited here since this will interact badly with when SMB handles (i.e. calls the subdissector) and desegmented pdu's . Instead we check if this pdu is already in the matched table or not @@ -4851,7 +4851,7 @@ dissect_dcerpc_cn_fault(tvbuff_t *tvb, gint offset, packet_info *pinfo, } else { dcerpc_matched_key matched_key, *new_matched_key; - /* !!! we can NOT check flags.visited here since this will interact + /* !!! we can NOT check visited here since this will interact badly with when SMB handles (i.e. calls the subdissector) and desegmented pdu's . Instead we check if this pdu is already in the matched table or not @@ -4966,7 +4966,7 @@ dissect_dcerpc_cn_fault(tvbuff_t *tvb, gint offset, packet_info *pinfo, } } if (hdr->flags&PFC_FIRST_FRAG) { /* FIRST fragment */ - if ( (!pinfo->fd->flags.visited) && value->rep_frame ) { + if ( (!pinfo->fd->visited) && value->rep_frame ) { fragment_add_seq_next(&dcerpc_co_reassembly_table, stub_tvb, 0, pinfo, value->rep_frame, NULL, @@ -5011,7 +5011,7 @@ dissect_dcerpc_cn_fault(tvbuff_t *tvb, gint offset, packet_info *pinfo, } } } else { /* MIDDLE fragment(s) */ - if ( (!pinfo->fd->flags.visited) && value->rep_frame ) { + if ( (!pinfo->fd->visited) && value->rep_frame ) { fragment_add_seq_next(&dcerpc_co_reassembly_table, stub_tvb, 0, pinfo, value->rep_frame, NULL, @@ -6102,7 +6102,7 @@ dissect_dcerpc_dg_rqst(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_item *pi; proto_item *parent_pi; - if (!(pinfo->fd->flags.visited)) { + if (!(pinfo->fd->visited)) { dcerpc_call_value *call_value; dcerpc_dg_call_key *call_key; @@ -6181,7 +6181,7 @@ dissect_dcerpc_dg_resp(tvbuff_t *tvb, int offset, packet_info *pinfo, proto_item *pi; proto_item *parent_pi; - if (!(pinfo->fd->flags.visited)) { + if (!(pinfo->fd->visited)) { dcerpc_call_value *call_value; dcerpc_dg_call_key call_key; @@ -6243,7 +6243,7 @@ dissect_dcerpc_dg_ping_ack(tvbuff_t *tvb, int offset, packet_info *pinfo, e_dce_dg_common_hdr_t *hdr, conversation_t *conv) { proto_item *parent_pi; -/* if (!(pinfo->fd->flags.visited)) {*/ +/* if (!(pinfo->fd->visited)) {*/ dcerpc_call_value *call_value; dcerpc_dg_call_key call_key; |