aboutsummaryrefslogtreecommitdiffstats
path: root/epan/exported_pdu.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2013-05-14 16:02:40 +0000
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2013-05-14 16:02:40 +0000
commitbd967efb91e423cd17dbbd286db016706c46b604 (patch)
tree1b68ba644fbb54dd5dca661fbf91488c2f5d585e /epan/exported_pdu.c
parentaa2e4c153569f317daf44c38f24378f23d7a1d23 (diff)
Fix some Dead Store (Dead assignement/Dead increment) Warning found by Clang
svn path=/trunk/; revision=49287
Diffstat (limited to 'epan/exported_pdu.c')
-rw-r--r--epan/exported_pdu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/exported_pdu.c b/epan/exported_pdu.c
index 3523464fb3..166797dd3f 100644
--- a/epan/exported_pdu.c
+++ b/epan/exported_pdu.c
@@ -182,7 +182,7 @@ load_export_pdu_tags(packet_info *pinfo, const char* proto_name, int wtap_encap
exp_pdu_data->tlv_buffer[i+1] = (pinfo->destport & 0x00ff0000) >> 16;
exp_pdu_data->tlv_buffer[i+2] = (pinfo->destport & 0x0000ff00) >> 8;
exp_pdu_data->tlv_buffer[i+3] = (pinfo->destport & 0x000000ff);
- i = i +EXP_PDU_TAG_DST_PORT_LEN;
+ /*i = i +EXP_PDU_TAG_DST_PORT_LEN;*/
}
return exp_pdu_data;