[Asterisk-cvs] asterisk/apps app_rpt.c,1.46,1.47

jim jim
Thu Nov 3 14:06:40 CST 2005


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

Modified Files:
	app_rpt.c 
Log Message:
Fixed a couple of silly boo-boo's


Index: app_rpt.c
===================================================================
RCS file: /usr/cvsroot/asterisk/apps/app_rpt.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- app_rpt.c	26 Oct 2005 19:48:14 -0000	1.46
+++ app_rpt.c	3 Nov 2005 18:58:24 -0000	1.47
@@ -20,7 +20,7 @@
 /*
  *
  * Radio Repeater / Remote Base program 
- *  version 0.36 10/26/05
+ *  version 0.37 11/3/05
  * 
  * See http://www.zapatatelephony.org/app_rpt.html
  *
@@ -197,7 +197,7 @@
 #include "asterisk/say.h"
 #include "asterisk/localtime.h"
 
-static  char *tdesc = "Radio Repeater / Remote Base  version 0.36  10/26/2005";
+static  char *tdesc = "Radio Repeater / Remote Base  version 0.37  11/03/2005";
 
 static char *app = "Rpt";
 
@@ -4614,7 +4614,7 @@
 			ast_set_write_format(myrpt->txchannel,AST_FORMAT_SLINEAR);
 			myrpt->txchannel->whentohangup = 0;
 			myrpt->txchannel->appl = "Apprpt";
-			myrpt->txchannel->data = "(Repeater Rx)";
+			myrpt->txchannel->data = "(Repeater Tx)";
 			if (option_verbose > 2)
 				ast_verbose(VERBOSE_PREFIX_3 "rpt (Tx) initiating call to %s/%s on %s\n",
 					tmpstr,tele,myrpt->txchannel->name);
@@ -6022,7 +6022,7 @@
 			return -1;
 		}
 
-		if (*b1 <= '1')
+		if (*b1 < '1')
 		{
 			ast_log(LOG_WARNING, "Node %s Invalid for connection here!!\n",b1);
 			return -1;




More information about the svn-commits mailing list