common: fix commandline options

some of the long command line options that take an argument lack the =
sign at the end, which means they won't work properly, lets fix this.
This commit is contained in:
Philipp Maier 2023-01-19 11:12:49 +01:00
parent 0e73184c17
commit da4af9d9fa
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ from utils import *
import sys, getopt
COMMON_GETOPTS = "hfa:J:nN:lL:kK:tT:oO:C:sSip"
COMMON_GETOPTS_LONG = ["help", "force", "adm1=", "set-imsi", "mnclen",
"set-mnclen", "milenage", "set-milenage", "ki",
COMMON_GETOPTS_LONG = ["help", "force", "adm1=", "set-imsi=", "mnclen",
"set-mnclen=", "milenage", "set-milenage=", "ki",
"set-ki=", "auth", "set-auth=", "opc", "set-op=",
"set-opc=", "seq-parameters", "reset-seq-parameters"
"iccid", "aid"]