aboutsummaryrefslogtreecommitdiffstats
path: root/epan/ftypes
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-10-30 11:28:21 -0700
committerGuy Harris <guy@alum.mit.edu>2017-10-30 18:29:00 +0000
commit0de8c6f4c70728f803de7a47bccd982ec48b691e (patch)
tree00a0b0e7cb9c9366217cf9b9217d7941976a493a /epan/ftypes
parentbbae1d25c2b950256671576482896561995ba42c (diff)
FT_IPv4 fields' values are 4-byte integers, not structures with a pointer.
Fix a tpyo while we're at it. Change-Id: I1bde763ec2bd188c0f8afd1069db5a9f23963e8e Reviewed-on: https://code.wireshark.org/review/24186 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/ftypes')
-rw-r--r--epan/ftypes/ftypes.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/epan/ftypes/ftypes.c b/epan/ftypes/ftypes.c
index 96403e387c..c60da6f38f 100644
--- a/epan/ftypes/ftypes.c
+++ b/epan/ftypes/ftypes.c
@@ -123,7 +123,7 @@ same_ftype(const enum ftenum ftype)
case FT_REL_OID:
return FT_OID;
- /* XXX: the folowing are unqiue for now */
+ /* XXX: the folowing are unique for now */
case FT_IPv4:
case FT_IPv6:
@@ -629,7 +629,6 @@ fvalue_get(fvalue_t *fv)
fv->ftype->ftype == FT_SYSTEM_ID ||
fv->ftype->ftype == FT_FCWWN ||
fv->ftype->ftype == FT_GUID ||
- fv->ftype->ftype == FT_IPv4 ||
fv->ftype->ftype == FT_IPv6 ||
fv->ftype->ftype == FT_PCRE ||
fv->ftype->ftype == FT_PROTOCOL ||