summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMark Michelson <mmichelson@digium.com>2012-08-10 21:35:18 +0000
committerMark Michelson <mmichelson@digium.com>2012-08-10 21:35:18 +0000
commit567b35e5473210083684c0d73d544378ef2ecf8c (patch)
tree2787954d6669ffbb271380dcb4f3b0223a44613c /apps
parent938ba94264459e86b10dc6f5e46e1a7eab096bde (diff)
Fix a couple of documentation problems in app_queue.c
* The RemoveQueueMember app made mention of options that could be passed in, but no options are supported. I have removed the listing of options from the documentation. * The RQMSTATUS variable did not list "NOTDYNAMIC" as a possible value that could be set. (closes issue AST-949) reported by Steve Pitts (closes issue AST-954) reported by Steve Pitts ........ Merged revisions 371141 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 371142 from http://svn.asterisk.org/svn/asterisk/branches/10 ........ Merged revisions 371143 from http://svn.asterisk.org/svn/asterisk/branches/11 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@371144 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'apps')
-rw-r--r--apps/app_queue.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/app_queue.c b/apps/app_queue.c
index cee5d449f..38401607b 100644
--- a/apps/app_queue.c
+++ b/apps/app_queue.c
@@ -326,7 +326,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<syntax>
<parameter name="queuename" required="true" />
<parameter name="interface" />
- <parameter name="options" />
</syntax>
<description>
<para>If the interface is <emphasis>NOT</emphasis> in the queue it will return an error.</para>
@@ -336,6 +335,7 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
<value name="REMOVED" />
<value name="NOTINQUEUE" />
<value name="NOSUCHQUEUE" />
+ <value name="NOTDYNAMIC" />
</variable>
</variablelist>
<para>Example: RemoveQueueMember(techsupport,SIP/3000)</para>
@@ -6414,12 +6414,11 @@ static int rqm_exec(struct ast_channel *chan, const char *data)
AST_DECLARE_APP_ARGS(args,
AST_APP_ARG(queuename);
AST_APP_ARG(interface);
- AST_APP_ARG(options);
);
if (ast_strlen_zero(data)) {
- ast_log(LOG_WARNING, "RemoveQueueMember requires an argument (queuename[,interface[,options]])\n");
+ ast_log(LOG_WARNING, "RemoveQueueMember requires an argument (queuename[,interface])\n");
return -1;
}