summaryrefslogtreecommitdiff
path: root/include/asterisk
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 /include/asterisk
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 'include/asterisk')
-rw-r--r--include/asterisk/manager.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/asterisk/manager.h b/include/asterisk/manager.h
index 31f31b7f0..908d4972c 100644
--- a/include/asterisk/manager.h
+++ b/include/asterisk/manager.h
@@ -305,14 +305,13 @@ void astman_send_ack(struct mansession *s, const struct message *m, char *msg);
* \param s - AMI session control struct.
* \param m - AMI action request that started the list.
* \param msg - Message contents describing the list to follow.
- * \param listflag - Not used. Historically always set to "start".
*
* \note You need to call astman_send_list_complete_start() and
* astman_send_list_complete_end() to send the AMI list completion event.
*
* \return Nothing
*/
-void astman_send_listack(struct mansession *s, const struct message *m, char *msg, char *listflag);
+void astman_send_listack(struct mansession *s, const struct message *m, char *msg);
/*!
* \brief Start the list complete event.