mbmmodem: Remove unneeded if

This commit is contained in:
Denis Kenzior 2019-04-29 14:11:22 -05:00
parent 4bb6e09661
commit b126407632
1 changed files with 2 additions and 7 deletions

View File

@ -367,7 +367,6 @@ static void mbm_gprs_activate_primary(struct ofono_gprs_context *gc,
struct gprs_context_data *gcd = ofono_gprs_context_get_data(gc);
struct cb_data *cbd = cb_data_new(cb, data);
char buf[AUTH_BUF_LENGTH];
int len;
/* IPv6 support not implemented */
if (ctx->proto != OFONO_GPRS_PROTO_IP)
@ -376,14 +375,10 @@ static void mbm_gprs_activate_primary(struct ofono_gprs_context *gc,
DBG("cid %u", ctx->cid);
gcd->active_context = ctx->cid;
cbd->user = gc;
len = snprintf(buf, sizeof(buf), "AT+CGDCONT=%u,\"IP\"", ctx->cid);
if (ctx->apn)
snprintf(buf + len, sizeof(buf) - len - 3, ",\"%s\"",
ctx->apn);
snprintf(buf, sizeof(buf), "AT+CGDCONT=%u,\"IP\",\"%s\"",
ctx->cid, ctx->apn);
if (g_at_chat_send(gcd->chat, buf, none_prefix,
mbm_cgdcont_cb, cbd, g_free) == 0)