app_queue: Minor docs and logging fixes for UnpauseQueueMember.

ASTERISK-30417 #close

Change-Id: I7534e7a925bf92a7b5a5347f5f54225768c162fe
18.17
Sean Bright 2 years ago committed by George Joseph
parent 7687c75cb6
commit 603675f285

@ -1277,7 +1277,7 @@
</syntax> </syntax>
<see-also> <see-also>
<ref type="application">PauseQueueMember</ref> <ref type="application">PauseQueueMember</ref>
<ref type="application">UnPauseQueueMember</ref> <ref type="application">UnpauseQueueMember</ref>
</see-also> </see-also>
</managerEventInstance> </managerEventInstance>
</managerEvent> </managerEvent>
@ -8180,7 +8180,7 @@ static int pqm_exec(struct ast_channel *chan, const char *data)
return 0; return 0;
} }
/*! \brief UnPauseQueueMember application */ /*! \brief UnpauseQueueMember application */
static int upqm_exec(struct ast_channel *chan, const char *data) static int upqm_exec(struct ast_channel *chan, const char *data)
{ {
char *parse; char *parse;
@ -8201,7 +8201,7 @@ static int upqm_exec(struct ast_channel *chan, const char *data)
AST_STANDARD_APP_ARGS(args, parse); AST_STANDARD_APP_ARGS(args, parse);
if (ast_strlen_zero(args.interface)) { if (ast_strlen_zero(args.interface)) {
ast_log(LOG_WARNING, "Missing interface argument to PauseQueueMember ([queuename],interface[,options[,reason]])\n"); ast_log(LOG_WARNING, "Missing interface argument to UnpauseQueueMember ([queuename],interface[,options[,reason]])\n");
return -1; return -1;
} }

Loading…
Cancel
Save