summaryrefslogtreecommitdiff
path: root/ui/packet_list_utils.c
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-10-06 02:31:10 +0000
committerMichael Mann <mmann78@netscape.net>2013-10-06 02:31:10 +0000
commitee208c8dcc371ca10986b7e8ea28c933e4bfaae9 (patch)
tree34da4ba8bde2ea6a7f071f47cd24bf2950f39331 /ui/packet_list_utils.c
parent625fbd5f9a09483485f9c2b0271ab29afb68a597 (diff)
downloadwireshark-ee208c8dcc371ca10986b7e8ea28c933e4bfaae9.tar.gz
Add support for RELATIVE-OID ASN.1 type. Bug 9192 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=9192)
From Ed Beroset. svn path=/trunk/; revision=52393
Diffstat (limited to 'ui/packet_list_utils.c')
-rw-r--r--ui/packet_list_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/packet_list_utils.c b/ui/packet_list_utils.c
index 24f0dd47b5..5426334663 100644
--- a/ui/packet_list_utils.c
+++ b/ui/packet_list_utils.c
@@ -92,7 +92,7 @@ resolve_column (gint col, capture_file *cf)
/* Check if this is a valid field */
if (hfi != NULL) {
/* Check if we have an OID or a strings table with integer values */
- if ((hfi->type == FT_OID) ||
+ if ((hfi->type == FT_OID) || (hfi->type == FT_REL_OID) ||
((hfi->strings != NULL) &&
((hfi->type == FT_BOOLEAN) || (hfi->type == FT_FRAMENUM) ||
IS_FT_INT(hfi->type) || IS_FT_UINT(hfi->type)))) {