Revert "TODO epan/dissectors/asn1/kerberos/packet-kerberos-template.c new GSS flags"
[wireshark-sm.git] / test / lua / locale.lua
blob7cfaca443e74ef2ab4165f72fd8d586a45420565
1 -- Test script to set the locale before running other Lua scripts
3 local arg={...}
5 if #arg >= 2 then
6 os.setlocale(arg[1], arg[2])
7 else
8 os.setlocale(arg[1])
9 end