summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2015-01-09 18:53:49 +0000
committerRichard Mudgett <rmudgett@digium.com>2015-01-09 18:53:49 +0000
commitef34a05f215e3c70aac3dba266bc3dadc4db33e4 (patch)
tree0ccf28e5884d92e615207758bf9983914dc82fd6 /apps
parent52a7cdb1011ee4930c1cd5efaf31588f570b88cf (diff)
AMI: Remove no longer used parameter from astman_send_listack().
Follow-up issue to -r430435 from reviewboard review. ASTERISK-24049 Review: https://reviewboard.asterisk.org/r/4315/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@430452 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_agent_pool.c2
-rw-r--r--apps/app_confbridge.c4
-rw-r--r--apps/app_meetme.c4
-rw-r--r--apps/app_queue.c4
-rw-r--r--apps/app_voicemail.c2
5 files changed, 8 insertions, 8 deletions
diff --git a/apps/app_agent_pool.c b/apps/app_agent_pool.c
index a36c77143..0e8a1b199 100644
--- a/apps/app_agent_pool.c
+++ b/apps/app_agent_pool.c
@@ -2532,7 +2532,7 @@ static int action_agents(struct mansession *s, const struct message *m)
} else {
id_text[0] = '\0';
}
- astman_send_listack(s, m, "Agents will follow", "start");
+ astman_send_listack(s, m, "Agents will follow");
iter = ao2_iterator_init(agents, 0);
for (; (agent = ao2_iterator_next(&iter)); ao2_ref(agent, -1)) {
diff --git a/apps/app_confbridge.c b/apps/app_confbridge.c
index b5d48452d..53bd0e8fa 100644
--- a/apps/app_confbridge.c
+++ b/apps/app_confbridge.c
@@ -2883,7 +2883,7 @@ static int action_confbridgelist(struct mansession *s, const struct message *m)
return 0;
}
- astman_send_listack(s, m, "Confbridge user list will follow", "start");
+ astman_send_listack(s, m, "Confbridge user list will follow");
ao2_lock(conference);
AST_LIST_TRAVERSE(&conference->active_list, user, list) {
@@ -2920,7 +2920,7 @@ static int action_confbridgelistrooms(struct mansession *s, const struct message
return 0;
}
- astman_send_listack(s, m, "Confbridge conferences will follow", "start");
+ astman_send_listack(s, m, "Confbridge conferences will follow");
/* Traverse the conference list */
iter = ao2_iterator_init(conference_bridges, 0);
diff --git a/apps/app_meetme.c b/apps/app_meetme.c
index 907770e22..c449ba0f8 100644
--- a/apps/app_meetme.c
+++ b/apps/app_meetme.c
@@ -5530,7 +5530,7 @@ static int action_meetmelist(struct mansession *s, const struct message *m)
return 0;
}
- astman_send_listack(s, m, "Meetme user list will follow", "start");
+ astman_send_listack(s, m, "Meetme user list will follow");
/* Find the right conference */
AST_LIST_LOCK(&confs);
@@ -5603,7 +5603,7 @@ static int action_meetmelistrooms(struct mansession *s, const struct message *m)
return 0;
}
- astman_send_listack(s, m, "Meetme conferences will follow", "start");
+ astman_send_listack(s, m, "Meetme conferences will follow");
now = time(NULL);
diff --git a/apps/app_queue.c b/apps/app_queue.c
index d41641c62..e3d86992d 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -9472,7 +9472,7 @@ static int manager_queues_summary(struct mansession *s, const struct message *m)
struct ao2_iterator queue_iter;
struct ao2_iterator mem_iter;
- astman_send_listack(s, m, "Queue summary will follow", "start");
+ astman_send_listack(s, m, "Queue summary will follow");
time(&now);
idText[0] = '\0';
if (!ast_strlen_zero(id)) {
@@ -9549,7 +9549,7 @@ static int manager_queues_status(struct mansession *s, const struct message *m)
struct ao2_iterator queue_iter;
struct ao2_iterator mem_iter;
- astman_send_listack(s, m, "Queue status will follow", "start");
+ astman_send_listack(s, m, "Queue status will follow");
time(&now);
idText[0] = '\0';
if (!ast_strlen_zero(id)) {
diff --git a/apps/app_voicemail.c b/apps/app_voicemail.c
index 6311263a4..92b6ddd2f 100644
--- a/apps/app_voicemail.c
+++ b/apps/app_voicemail.c
@@ -13065,7 +13065,7 @@ static int manager_list_voicemail_users(struct mansession *s, const struct messa
return RESULT_SUCCESS;
}
- astman_send_listack(s, m, "Voicemail user list will follow", "start");
+ astman_send_listack(s, m, "Voicemail user list will follow");
AST_LIST_TRAVERSE(&users, vmu, list) {
char dirname[256];