[asterisk-commits] jdixon: branch jdixon/chan_usbradio-1.4 r140392 - /team/jdixon/chan_usbradio-...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Wed Aug 27 23:54:01 CDT 2008
Author: jdixon
Date: Wed Aug 27 23:53:59 2008
New Revision: 140392
URL: http://svn.digium.com/view/asterisk?view=rev&rev=140392
Log:
Fixed error printout so that missing file can be identified
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=140392&r1=140391&r2=140392
==============================================================================
--- team/jdixon/chan_usbradio-1.4/apps/app_rpt.c (original)
+++ team/jdixon/chan_usbradio-1.4/apps/app_rpt.c Wed Aug 27 23:53:59 2008
@@ -21,7 +21,7 @@
/*! \file
*
* \brief Radio Repeater / Remote Base program
- * version 0.134 8/26/08 2055 EDT
+ * version 0.135 8/27/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.134 8/26/2008";
+static char *tdesc = "Radio Repeater / Remote Base version 0.135 8/27/2008";
static char *app = "Rpt";
@@ -3691,7 +3691,7 @@
if (!res)
res = ast_waitstream(mychannel, "");
else
- ast_log(LOG_WARNING, "ast_streamfile failed on %s\n", mychannel->name);
+ ast_log(LOG_WARNING, "ast_streamfile %s failed on %s\n", fname, mychannel->name);
ast_stopstream(mychannel);
return res;
}
More information about the asterisk-commits
mailing list