 
            fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmocom-bb/+/32505 )
Change subject: modem: VTY: fix invalid IMSI, use 001010000000000 ......................................................................
modem: VTY: fix invalid IMSI, use 001010000000000
Change-Id: Id373993fa0dac950338d8d3e48dc8492f22f9d98 Fixes: 7b8cc36ad "layer23: modem: fill imsi & imei in vty 'test gmm attach'" Fixes: a89939a68 "modem: initial SM layer support through libosmo-gprs-sm" --- M src/host/layer23/src/modem/vty.c 1 file changed, 13 insertions(+), 2 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmocom-bb refs/changes/05/32505/1
diff --git a/src/host/layer23/src/modem/vty.c b/src/host/layer23/src/modem/vty.c index a23ae73..082a0eb 100644 --- a/src/host/layer23/src/modem/vty.c +++ b/src/host/layer23/src/modem/vty.c @@ -165,7 +165,7 @@ { struct osmo_gprs_gmm_prim *gmm_prim; const uint32_t tlli = 0xe1c5d364; - const char *imsi = "1234567890"; + const char *imsi = "001010000000000"; const char *imei = "42342342342342"; const char *imeisv = "4234234234234275"; struct osmocom_ms *ms; @@ -232,7 +232,7 @@ uint8_t qos[OSMO_GPRS_SM_QOS_MAXLEN] = {0}; uint8_t pco[OSMO_GPRS_SM_QOS_MAXLEN] = {0}; uint32_t ptmsi = 0x00000000; - char *imsi = "1234567890"; + char *imsi = "001010000000000"; char *imei = "42342342342342"; char *imeisv = "4234234234234275"; enum osmo_gprs_sm_pdp_addr_ietf_type pdp_addr_ietf_type;
