mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-20 03:59:01 +00:00
Get rid of compiler warnings when calling ast_queue_log
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2257 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -833,7 +833,7 @@ static int try_calling(struct queue_ent *qe, char *options, char *announceoverri
|
|||||||
if (res2) {
|
if (res2) {
|
||||||
/* Agent must have hung up */
|
/* Agent must have hung up */
|
||||||
ast_log(LOG_WARNING, "Agent on %s hungup on the customer. They're going to be pissed.\n", peer->name);
|
ast_log(LOG_WARNING, "Agent on %s hungup on the customer. They're going to be pissed.\n", peer->name);
|
||||||
ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "AGENTDUMP", "");
|
ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "AGENTDUMP", "%s", "");
|
||||||
ast_hangup(peer);
|
ast_hangup(peer);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
@@ -844,7 +844,7 @@ static int try_calling(struct queue_ent *qe, char *options, char *announceoverri
|
|||||||
/* Make sure channels are compatible */
|
/* Make sure channels are compatible */
|
||||||
res = ast_channel_make_compatible(qe->chan, peer);
|
res = ast_channel_make_compatible(qe->chan, peer);
|
||||||
if (res < 0) {
|
if (res < 0) {
|
||||||
ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "SYSCOMPAT", "");
|
ast_queue_log(queuename, qe->chan->uniqueid, peer->name, "SYSCOMPAT", "%s", "");
|
||||||
ast_log(LOG_WARNING, "Had to drop call because I couldn't make %s compatible with %s\n", qe->chan->name, peer->name);
|
ast_log(LOG_WARNING, "Had to drop call because I couldn't make %s compatible with %s\n", qe->chan->name, peer->name);
|
||||||
ast_hangup(peer);
|
ast_hangup(peer);
|
||||||
return -1;
|
return -1;
|
||||||
|
4
logger.c
4
logger.c
@@ -252,9 +252,9 @@ static void queue_log_init(void)
|
|||||||
qlog = fopen(filename, "a");
|
qlog = fopen(filename, "a");
|
||||||
ast_mutex_unlock(&qloglock);
|
ast_mutex_unlock(&qloglock);
|
||||||
if (reloaded)
|
if (reloaded)
|
||||||
ast_queue_log("NONE", "NONE", "NONE", "CONFIGRELOAD", "");
|
ast_queue_log("NONE", "NONE", "NONE", "CONFIGRELOAD", "%s", "");
|
||||||
else
|
else
|
||||||
ast_queue_log("NONE", "NONE", "NONE", "QUEUESTART", "");
|
ast_queue_log("NONE", "NONE", "NONE", "QUEUESTART", "%s", "");
|
||||||
}
|
}
|
||||||
|
|
||||||
int reload_logger(int rotate)
|
int reload_logger(int rotate)
|
||||||
|
Reference in New Issue
Block a user