iface-modem-simple: don't abort connection attempt if SIM-PUK2 locked

This commit is contained in:
Aleksander Morgado
2020-01-09 12:25:17 +01:00
parent 94025aad6c
commit b6add18157

View File

@@ -432,10 +432,11 @@ update_lock_info_ready (MMIfaceModem *self,
} }
/* If we are already unlocked, go on to next step. Note that we do also /* If we are already unlocked, go on to next step. Note that we do also
* allow SIM-PIN2, as we don't need to unlock that in order to get * allow SIM-PIN2/SIM-PUK2, as we don't need to unlock that in order to get
* connected. */ * connected. */
if (lock == MM_MODEM_LOCK_NONE || if (lock == MM_MODEM_LOCK_NONE ||
lock == MM_MODEM_LOCK_SIM_PIN2) { lock == MM_MODEM_LOCK_SIM_PIN2 ||
lock == MM_MODEM_LOCK_SIM_PUK2) {
ctx->step++; ctx->step++;
connection_step (ctx); connection_step (ctx);
return; return;