aboutsummaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2014-09-18 10:44:56 -0400
committerBill Meier <wmeier@newsguy.com>2014-09-18 15:08:39 +0000
commit051b0000f9a6295284eed9330c05fec156c0d549 (patch)
tree4bb901f7125f9db2016ed2293f13e4166119ddd4 /tools
parent36ce5e1b900f9474f0de5218bae86a742521c8db (diff)
fix-encoding-args.pl: Add a few fixups for FT_UINT_STRING
Change-Id: Ic22e154859877c48a85b808d0029e10e07876b73 Reviewed-on: https://code.wireshark.org/review/4174 Reviewed-by: Bill Meier <wmeier@newsguy.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/fix-encoding-args.pl3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/fix-encoding-args.pl b/tools/fix-encoding-args.pl
index e56783a371..6eca20d4b1 100755
--- a/tools/fix-encoding-args.pl
+++ b/tools/fix-encoding-args.pl
@@ -127,6 +127,9 @@ my @types_UINT_STRING =
"1" => "ENC_ASCII|ENC_LITTLE_ENDIAN",
"ENC_BIG_ENDIAN" => "ENC_ASCII|ENC_BIG_ENDIAN",
"ENC_LITTLE_ENDIAN" => "ENC_ASCII|ENC_LITTLE_ENDIAN",
+ "ENC_ASCII|ENC_NA" => "ENC_ASCII|ENC_BIG_ENDIAN",
+ "ENC_ASCII" => "ENC_ASCII|ENC_BIG_ENDIAN",
+ "ENC_NA" => "ENC_ASCII|ENC_BIG_ENDIAN"
}
);