summaryrefslogtreecommitdiff
path: root/epan/ftypes
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-01-09 12:51:15 -0500
committerMichael Mann <mmann78@netscape.net>2015-01-10 19:57:59 +0000
commit59c1e32d2c6dbdd353ae996d9538141bb029d6d0 (patch)
tree91e0422d3b1eed7ec887522fc6845ef94955d291 /epan/ftypes
parenteffc8266ce2a87c5987018511f9bb2f61c34ba57 (diff)
downloadwireshark-59c1e32d2c6dbdd353ae996d9538141bb029d6d0.tar.gz
Add BASE_SPACE for FT_BYTES
It's just like BASE_DOT, BASE_DASH and BASE_SEMICOLON, only its a space between bytes. Since this seems pretty specific to FT_BYTES, perhaps there is a better was to represent the functionality (like FT_BOOLEAN uses numeric values for number of bits)? Change-Id: I1a8f1ab263ece2736a8012b66fdd6a9105db7282 Reviewed-on: https://code.wireshark.org/review/6451 Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/ftypes')
-rw-r--r--epan/ftypes/ftype-bytes.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/ftypes/ftype-bytes.c b/epan/ftypes/ftype-bytes.c
index 22e677e56f..469311e044 100644
--- a/epan/ftypes/ftype-bytes.c
+++ b/epan/ftypes/ftype-bytes.c
@@ -160,6 +160,7 @@ bytes_to_repr(fvalue_t *fv, ftrepr_t rtype _U_, int field_display, char *buf)
case BASE_DASH:
separator = '-';
break;
+ case BASE_SPACE:
case BASE_SEMICOLON:
case BASE_NONE:
default: