aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_page.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-18 17:44:52 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-10-18 17:44:52 +0000
commita65ddf8cde418add66225a9f33a4c1a3aa4268f2 (patch)
tree15329390e527d79b9750813bb8b99974d331211f /apps/app_page.c
parentb4016e8f1a3fac0a8ecde4e5f1ec8df9650c2d27 (diff)
Small paging fixups (bug #5460)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6819 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_page.c')
-rwxr-xr-xapps/app_page.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/app_page.c b/apps/app_page.c
index 5238b19b3..aac200b79 100755
--- a/apps/app_page.c
+++ b/apps/app_page.c
@@ -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 {