stemodem: Remove unneeded if

This commit is contained in:
Denis Kenzior 2019-04-29 14:09:11 -05:00
parent 0b2de27727
commit 9da5779a90
1 changed files with 2 additions and 6 deletions

View File

@ -277,7 +277,6 @@ static void ste_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)
@ -291,11 +290,8 @@ static void ste_gprs_activate_primary(struct ofono_gprs_context *gc,
goto error;
}
len = snprintf(buf, sizeof(buf), "AT+CGDCONT=%u,\"IP\"", ctx->cid);
if (ctx->apn)
snprintf(buf + len, sizeof(buf) - len, ",\"%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,
ste_cgdcont_cb, cbd, g_free) == 0)