From da4af9d9fa21d9f1c83182ea380219acb9c7b6bf Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 19 Jan 2023 11:12:49 +0100 Subject: [PATCH] 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. --- common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common.py b/common.py index 330d9ed..39858e9 100644 --- a/common.py +++ b/common.py @@ -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"]