sig_pri: Address gcc9 issues

A few more format truncation issues addressed.

Change-Id: I047f373169caaca0eec4889d3c0e5e10f130017a
This commit is contained in:
George Joseph 2019-06-24 07:30:19 -06:00
parent a464847a1b
commit 31d755e805
1 changed files with 5 additions and 2 deletions

View File

@ -6037,11 +6037,14 @@ static void sig_pri_handle_setup(struct sig_pri_span *pri, pri_event *e)
/* Setup the user tag for party id's from this device for this call. */
if (pri->append_msn_to_user_tag) {
snprintf(pri->pvts[chanpos]->user_tag,
int len = snprintf(pri->pvts[chanpos]->user_tag,
sizeof(pri->pvts[chanpos]->user_tag), "%s_%s",
pri->initial_user_tag,
pri->nodetype == PRI_NETWORK
? plancallingnum : e->ring.callednum);
if (len >= sizeof(pri->pvts[chanpos]->user_tag)) {
ast_log(LOG_WARNING, "user_tag '%s' truncated\n", pri->pvts[chanpos]->user_tag);
}
} else {
ast_copy_string(pri->pvts[chanpos]->user_tag,
pri->initial_user_tag, sizeof(pri->pvts[chanpos]->user_tag));
@ -6435,7 +6438,7 @@ static void *pri_dchannel(void *vpri)
if (e) {
int chanpos = -1;
char cause_str[35];
char cause_str[36];
if (pri->debug) {
ast_verbose("Span %d: Processing event %s(%d)\n",