diff options
Diffstat (limited to 'drivers/atmodem/voicecall.c')
-rw-r--r-- | drivers/atmodem/voicecall.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/atmodem/voicecall.c b/drivers/atmodem/voicecall.c index 903b2dd2..efee9cdc 100644 --- a/drivers/atmodem/voicecall.c +++ b/drivers/atmodem/voicecall.c @@ -344,9 +344,9 @@ static void at_dial(struct ofono_voicecall *vc, cbd->user = vc; if (ph->type == 145) - sprintf(buf, "ATD+%s", ph->number); + snprintf(buf, sizeof(buf), "ATD+%s", ph->number); else - sprintf(buf, "ATD%s", ph->number); + snprintf(buf, sizeof(buf), "ATD%s", ph->number); switch (clir) { case OFONO_CLIR_OPTION_INVOCATION: @@ -476,7 +476,7 @@ static void at_release_specific(struct ofono_voicecall *vc, int id, req->data = data; req->id = id; - sprintf(buf, "AT+CHLD=1%d", id); + snprintf(buf, sizeof(buf), "AT+CHLD=1%d", id); if (g_at_chat_send(vd->chat, buf, none_prefix, release_id_cb, req, g_free) > 0) @@ -494,7 +494,7 @@ static void at_private_chat(struct ofono_voicecall *vc, int id, { char buf[32]; - sprintf(buf, "AT+CHLD=2%d", id); + snprintf(buf, sizeof(buf), "AT+CHLD=2%d", id); at_template(buf, vc, generic_cb, 0, cb, data); } @@ -526,7 +526,7 @@ static void at_deflect(struct ofono_voicecall *vc, char buf[128]; unsigned int incoming_or_waiting = (0x1 << 4) | (0x1 << 5); - sprintf(buf, "AT+CTFR=%s,%d", ph->number, ph->type); + snprintf(buf, sizeof(buf), "AT+CTFR=%s,%d", ph->number, ph->type); at_template(buf, vc, generic_cb, incoming_or_waiting, cb, data); } |