aboutsummaryrefslogtreecommitdiffstats
path: root/apps/app_rpt.c
diff options
context:
space:
mode:
authorjim <jim@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-03 18:58:24 +0000
committerjim <jim@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-03 18:58:24 +0000
commitcee4c00add38082410d2e79d3f640b516783fa77 (patch)
tree13bb6fdd35b4f5678287079c11970ba543f967c8 /apps/app_rpt.c
parentec78627a832b51122a914ccd53894a668ccb0530 (diff)
Fixed a couple of silly boo-boo's
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6952 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'apps/app_rpt.c')
-rwxr-xr-xapps/app_rpt.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/app_rpt.c b/apps/app_rpt.c
index 377a99578..8a0e8c575 100755
--- a/apps/app_rpt.c
+++ b/apps/app_rpt.c
@@ -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 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
#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 @@ char cmd[MAXDTMF+1] = "";
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 @@ static int rpt_exec(struct ast_channel *chan, void *data)
return -1;
}
- if (*b1 <= '1')
+ if (*b1 < '1')
{
ast_log(LOG_WARNING, "Node %s Invalid for connection here!!\n",b1);
return -1;