From 891c9db19b2089086c8354168d15d930f73fb1dd Mon Sep 17 00:00:00 2001 From: Jeff Morriss Date: Fri, 27 Apr 2012 18:58:37 +0000 Subject: As suggested in http://www.wireshark.org/lists/wireshark-dev/201204/msg00062.html : Don't use ENC_BIG_ENDIAN or ENC_LITTLE_ENDIAN with ENC_ASCII: ASCII has no endianism, so ENC_NA is more appropriate. svn path=/trunk/; revision=42297 --- epan/dissectors/packet-afs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan/dissectors/packet-afs.c') diff --git a/epan/dissectors/packet-afs.c b/epan/dissectors/packet-afs.c index 05e23d6cbb..b1c1f61b33 100644 --- a/epan/dissectors/packet-afs.c +++ b/epan/dissectors/packet-afs.c @@ -418,7 +418,7 @@ static gint ett_afs_vldb_flags = -1; i_orxs = tvb_get_ntohl(tvb, offset); \ len_orxs = ((i_orxs+4-1)/4)*4 + 4; \ proto_tree_add_item(tree, field, tvb, offset-4, len_orxs, \ - ENC_ASCII|ENC_BIG_ENDIAN); \ + ENC_ASCII|ENC_NA); \ offset += len_orxs; \ } -- cgit v1.2.3