[Asterisk-cvs] asterisk/apps Makefile, 1.114, 1.115 app_page.c, 1.4, 1.5

markster markster
Tue Oct 18 13:50:58 CDT 2005


Update of /usr/cvsroot/asterisk/apps
In directory mongoose.digium.com:/tmp/cvs-serv7074/apps

Modified Files:
	Makefile app_page.c 
Log Message:
Small paging fixups (bug #5460)


Index: Makefile
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/Makefile,v
retrieving revision 1.114
retrieving revision 1.115
diff -u -d -r1.114 -r1.115
--- Makefile	16 Oct 2005 02:59:13 -0000	1.114
+++ Makefile	18 Oct 2005 17:44:52 -0000	1.115
@@ -28,7 +28,7 @@
      app_test.so app_forkcdr.so app_math.so app_realtime.so \
      app_dumpchan.so app_waitforsilence.so app_while.so app_setrdnis.so \
      app_md5.so app_readfile.so app_chanspy.so app_settransfercapability.so \
-     app_dictate.so app_externalivr.so app_directed_pickup.so app_page.so \
+     app_dictate.so app_externalivr.so app_directed_pickup.so \
      app_muxmon.so
 
 #
@@ -45,7 +45,7 @@
 #APPS+=app_rpt.so
 
 ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/include/linux/zaptel.h)$(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/zaptel.h),)
-  APPS+=app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so
+  APPS+=app_zapras.so app_meetme.so app_flash.so app_zapbarge.so app_zapscan.so app_page.so
 endif
 
 ifneq ($(wildcard $(CROSS_COMPILE_TARGET)/usr/local/include/osp/osp.h $(CROSS_COMPILE_TARGET)/usr/include/osp/osp.h),)

Index: app_page.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_page.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- app_page.c	14 Oct 2005 00:23:47 -0000	1.4
+++ app_page.c	18 Oct 2005 17:44:52 -0000	1.5
@@ -18,7 +18,7 @@
 
 /*
  *
- * Page application
+ * Paging application
  *
  */
 
@@ -53,8 +53,8 @@
 "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 @@
 #define PAGE_QUIET  (1 << 1)
 
 AST_DECLARE_OPTIONS(page_opts,{
-        ['d'] = { PAGE_DUPLEX },
-		  ['q'] = { PAGE_QUIET },
+	['d'] = { PAGE_DUPLEX },
+	['q'] = { PAGE_QUIET },
 });
 
 struct calloutdata {




More information about the svn-commits mailing list