aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-23 23:51:55 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-06-23 23:51:55 +0000
commit617227fe2a0a9f2aacb6bd328b4a3eac0a41b73a (patch)
tree576f7188215e0d8ccbc61d2239c4f264afb08322 /epan
parent2258dfd5a96614600d3ee27f06984f599e957dc1 (diff)
change a comment to #if to make it clearer the code is disabled
svn path=/trunk/; revision=18566
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-http.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-http.c b/epan/dissectors/packet-http.c
index 9985e37aad..fca86174f9 100644
--- a/epan/dissectors/packet-http.c
+++ b/epan/dissectors/packet-http.c
@@ -1276,7 +1276,9 @@ chunked_encoding_dissector(tvbuff_t **tvb_ptr, packet_info *pinfo,
* of the segments weren't captured.
*/
chunk_size = datalen;
- }/* else if (new_tvb == NULL) {
+ }
+#if 0
+ else if (new_tvb == NULL) {
new_tvb = tvb_new_composite();
}
@@ -1291,7 +1293,7 @@ chunked_encoding_dissector(tvbuff_t **tvb_ptr, packet_info *pinfo,
tvb_composite_append(new_tvb, chunk_tvb);
}
- */
+#endif
chunked_data_size += chunk_size;