Small paging fixups (bug #5460)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6819 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Mark Spencer
2005-10-18 17:44:52 +00:00
parent 37add4fee5
commit e634c61ef8
2 changed files with 7 additions and 7 deletions

View File

@@ -18,7 +18,7 @@
/*
*
* Page application
* Paging application
*
*/
@@ -53,8 +53,8 @@ static const char *page_descrip =
"them into a conference bridge as muted participants. The original\n"
"caller is dumped into the conference as a speaker and the room is\n"
"destroyed when the original caller leaves. Valid options are:\n"
" d - full duplex audio\n"
" q - quiet, do not play beep to caller\n"
" d - full duplex audio\n"
" q - quiet, do not play beep to caller\n"
"Always returns -1.\n";
STANDARD_LOCAL_USER;
@@ -65,8 +65,8 @@ LOCAL_USER_DECL;
#define PAGE_QUIET (1 << 1)
AST_DECLARE_OPTIONS(page_opts,{
['d'] = { PAGE_DUPLEX },
['q'] = { PAGE_QUIET },
['d'] = { PAGE_DUPLEX },
['q'] = { PAGE_QUIET },
});
struct calloutdata {