hsomodem: Remove unneeded if statement

This commit is contained in:
Denis Kenzior 2019-04-29 14:02:35 -05:00
parent eef1f73cb3
commit cdcb576692
1 changed files with 2 additions and 6 deletions

View File

@ -150,7 +150,6 @@ static void hso_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)
@ -173,11 +172,8 @@ static void hso_gprs_activate_primary(struct ofono_gprs_context *gc,
NULL, NULL, NULL) == 0)
goto error;
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,
hso_cgdcont_cb, cbd, g_free) > 0)