[asterisk-commits] jdixon: branch jdixon/chan_usbradio-1.4 r139866 - /team/jdixon/chan_usbradio-...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Mon Aug 25 14:55:22 CDT 2008
Author: jdixon
Date: Mon Aug 25 14:55:21 2008
New Revision: 139866
URL: http://svn.digium.com/view/asterisk?view=rev&rev=139866
Log:
Fixed minor detail with cmd mode for echolink nodes
Modified:
team/jdixon/chan_usbradio-1.4/apps/app_rpt.c
Modified: team/jdixon/chan_usbradio-1.4/apps/app_rpt.c
URL: http://svn.digium.com/view/asterisk/team/jdixon/chan_usbradio-1.4/apps/app_rpt.c?view=diff&rev=139866&r1=139865&r2=139866
==============================================================================
--- team/jdixon/chan_usbradio-1.4/apps/app_rpt.c (original)
+++ team/jdixon/chan_usbradio-1.4/apps/app_rpt.c Mon Aug 25 14:55:21 2008
@@ -21,7 +21,7 @@
/*! \file
*
* \brief Radio Repeater / Remote Base program
- * version 0.128 8/23/08 2055 EDT
+ * version 0.129 8/25/08 2055 EDT
*
* \author Jim Dixon, WB6NIL <jim at lambdatel.com>
*
@@ -377,7 +377,7 @@
/*! Stop the tones from playing */
void ast_playtones_stop(struct ast_channel *chan);
-static char *tdesc = "Radio Repeater / Remote Base version 0.128 8/23/2008";
+static char *tdesc = "Radio Repeater / Remote Base version 0.129 8/25/2008";
static char *app = "Rpt";
@@ -6083,13 +6083,17 @@
}
else
{
+#if 0
char actstr[10],dbstr[40],str1[40];
+#endif
if (strlen(digitbuf) < 7) break;
+#if 0
if (ast_db_get(EL_DB_ROOT,"active",actstr,sizeof(actstr) - 1))
return DC_ERROR;
sprintf(dbstr,"%s/nodenum/%d",actstr,atoi(digitbuf + 1));
if (ast_db_get(EL_DB_ROOT,dbstr,str1,sizeof(str1))) return DC_ERROR;
+#endif
}
rpt_mutex_lock(&myrpt->lock);
strcpy(myrpt->lastlinknode,digitbuf);
More information about the asterisk-commits
mailing list