summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-cdt.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-02-26 14:29:17 -0500
committerBill Meier <wmeier@newsguy.com>2014-02-26 19:38:21 +0000
commit1dff4e309d036e23c316f2cf9a6d05d5a4449ff2 (patch)
treea7ff0816c598def87e246a2ebbd2d80fa47365fc /epan/dissectors/packet-cdt.c
parentb4850149dd877375c1d8da3a2d20bddca1d91780 (diff)
downloadwireshark-1dff4e309d036e23c316f2cf9a6d05d5a4449ff2.tar.gz
Remove trailing whitespace from asn1 .cnf & template.[hc] files. Regenerate dissectors.
Change-Id: I0e779b2ac2f608356649c5bbfca438141070dea4 Reviewed-on: https://code.wireshark.org/review/412 Reviewed-by: Bill Meier <wmeier@newsguy.com> Tested-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'epan/dissectors/packet-cdt.c')
-rw-r--r--epan/dissectors/packet-cdt.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/epan/dissectors/packet-cdt.c b/epan/dissectors/packet-cdt.c
index f76e424de5..e05a792900 100644
--- a/epan/dissectors/packet-cdt.c
+++ b/epan/dissectors/packet-cdt.c
@@ -120,8 +120,8 @@ dissect_cdt_AlgorithmID_ShortForm(gboolean implicit_tag _U_, tvbuff_t *tvb _U_,
val_to_str (value, cdt_AlgorithmID_ShortForm_vals,
"unknown"));
- col_append_fstr (actx->pinfo->cinfo, COL_INFO, "%s ",
- val_to_str (value, cdt_AlgorithmID_ShortForm_vals,
+ col_append_fstr (actx->pinfo->cinfo, COL_INFO, "%s ",
+ val_to_str (value, cdt_AlgorithmID_ShortForm_vals,
"unknown"));
@@ -179,11 +179,11 @@ dissect_cdt_ContentType_ShortForm(gboolean implicit_tag _U_, tvbuff_t *tvb _U_,
&content_type);
proto_item_append_text (cdt_item, ", %s",
- val_to_str (content_type, cdt_ContentType_ShortForm_vals,
+ val_to_str (content_type, cdt_ContentType_ShortForm_vals,
"unknown"));
- col_append_fstr (actx->pinfo->cinfo, COL_INFO, "%s ",
- val_to_str (content_type, cdt_ContentType_ShortForm_vals,
+ col_append_fstr (actx->pinfo->cinfo, COL_INFO, "%s ",
+ val_to_str (content_type, cdt_ContentType_ShortForm_vals,
"unknown"));
@@ -253,17 +253,17 @@ dissect_cdt_CompressedContent(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int
if (compr_tvb == NULL) {
proto_tree_add_expert(top_tree, actx->pinfo, &ei_cdt_unable_compress_content,
tvb, save_offset, -1);
- col_append_str (actx->pinfo->cinfo, COL_INFO,
+ col_append_str (actx->pinfo->cinfo, COL_INFO,
"[Error: Unable to get compressed content]");
return offset;
}
-
+
next_tvb = tvb_child_uncompress (tvb, compr_tvb, 0, tvb_length (compr_tvb));
if (next_tvb == NULL) {
proto_tree_add_expert(top_tree, actx->pinfo, &ei_cdt_unable_uncompress_content,
tvb, save_offset, -1);
- col_append_str (actx->pinfo->cinfo, COL_INFO,
+ col_append_str (actx->pinfo->cinfo, COL_INFO,
"[Error: Unable to uncompress content]");
return offset;
}
@@ -284,7 +284,7 @@ dissect_cdt_CompressedContent(gboolean implicit_tag _U_, tvbuff_t *tvb _U_, int
call_dissector (data_handle, next_tvb, actx->pinfo, top_tree);
break;
}
-
+
return offset;