mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-22 20:56:39 +00:00
Go through and fix a bunch of places where character strings were being interpreted as format strings. Most of these changes are solely to make compiling with -Wsecurity and -Wformat=2 happy, and were not
actual problems, per se. I also added format attributes to any printf wrapper functions I found that didn't have them. -Wsecurity and -Wmissing-format-attribute added to --enable-dev-mode. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@109447 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1232,13 +1232,13 @@ static void queue_set_param(struct call_queue *q, const char *param, const char
|
||||
while ((s = strsep(&buf, ",|"))) {
|
||||
if (!q->sound_periodicannounce[i])
|
||||
q->sound_periodicannounce[i] = ast_str_create(16);
|
||||
ast_str_set(&q->sound_periodicannounce[i], 0, s);
|
||||
ast_str_set(&q->sound_periodicannounce[i], 0, "%s", s);
|
||||
i++;
|
||||
if (i == MAX_PERIODIC_ANNOUNCEMENTS)
|
||||
break;
|
||||
}
|
||||
} else {
|
||||
ast_str_set(&q->sound_periodicannounce[0], 0, val);
|
||||
ast_str_set(&q->sound_periodicannounce[0], 0, "%s", val);
|
||||
}
|
||||
} else if (!strcasecmp(param, "periodic-announce-frequency")) {
|
||||
q->periodicannouncefrequency = atoi(val);
|
||||
|
Reference in New Issue
Block a user