aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2018-12-25 18:14:03 +0000
committerAnders Broman <a.broman58@gmail.com>2018-12-26 07:40:44 +0000
commit3c9ac18bd588d1b71a8d31f56cfd8641bd01167d (patch)
tree88679a41a8f0eef7bd82854c1581fe69895ea8d9 /epan/dissectors
parent1ef9889a801a0e7a1c63fb2b2bcb6d04242c60c3 (diff)
Make dissect_oer_not_decoded_yet() static.
It's not used outside this file. Change-Id: I1eead997dbd4d3b58498192a0aec73094a49a067 Reviewed-on: https://code.wireshark.org/review/31202 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-oer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-oer.c b/epan/dissectors/packet-oer.c
index 8e11691932..bb5d093492 100644
--- a/epan/dissectors/packet-oer.c
+++ b/epan/dissectors/packet-oer.c
@@ -74,7 +74,8 @@ oer_tvb_new_subset_length(tvbuff_t *tvb, const gint backing_offset, const gint b
return tvb_new_subset_length(tvb, backing_offset, (length_remaining > backing_length) ? backing_length : length_remaining);
}
-void dissect_oer_not_decoded_yet(proto_tree* tree, packet_info* pinfo, tvbuff_t *tvb, const char* reason)
+static void
+dissect_oer_not_decoded_yet(proto_tree* tree, packet_info* pinfo, tvbuff_t *tvb, const char* reason)
{
proto_tree_add_expert_format(tree, pinfo, &ei_oer_undecoded, tvb, 0, 0, "something unknown here [%s]", reason);
col_append_fstr(pinfo->cinfo, COL_INFO, "[UNKNOWN OER: %s]", reason);