summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRichard Mudgett <rmudgett@digium.com>2015-01-12 18:34:28 +0000
committerRichard Mudgett <rmudgett@digium.com>2015-01-12 18:34:28 +0000
commit368ecf13bf81d00b5b50d71a849116addf59a3bb (patch)
treec3d54f91be0e9cde208679cf12fb01987aef508a /include
parent7d606d87bfb7eeacda9fcc3575f9383d29731d2e (diff)
AMI: Revert non-backwards compatible changes from earlier commit.
* Reverted the change to astman_send_listack() to not use the listflag parameter and always set the value to "Start" so the start capitalization is consistent. Unfortunately changing the case of a returned value is not a backward compatible change so for now FAXSessions is going to have to remain inconsistent with all of the other AMI list actions. * Reverted the minor protocol error fix in action_getconfig() when no requested categories are found. Each line needs to be formatted as "Header: text". Caught by the testsuite. ASTERISK-24049 git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/13@430528 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include')
-rw-r--r--include/asterisk/manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asterisk/manager.h b/include/asterisk/manager.h
index 31f31b7f0..43031d1d6 100644
--- a/include/asterisk/manager.h
+++ b/include/asterisk/manager.h
@@ -305,7 +305,7 @@ 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".
+ * \param listflag - Should always be 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.