[Redbutton-devel] SF.net SVN: redbutton: [185]
Brought to you by:
skilvington
|
From: <ski...@us...> - 2007-01-22 10:31:47
|
Revision: 185
http://svn.sourceforge.net/redbutton/?rev=185&view=rev
Author: skilvington
Date: 2007-01-22 02:31:43 -0800 (Mon, 22 Jan 2007)
Log Message:
-----------
use ~/.tzap/channels.conf as default channels.conf file
Modified Paths:
--------------
redbutton-download/trunk/channels.c
redbutton-download/trunk/rb-download.c
www/index.html
Modified: redbutton-download/trunk/channels.c
===================================================================
--- redbutton-download/trunk/channels.c 2007-01-18 22:26:22 UTC (rev 184)
+++ redbutton-download/trunk/channels.c 2007-01-22 10:31:43 UTC (rev 185)
@@ -41,7 +41,7 @@
/*
* if filename is NULL, it searches for:
- * ~/channels.conf
+ * ~/.tzap/channels.conf
* /etc/channels.conf
*/
@@ -58,7 +58,7 @@
{
if((home = getenv("HOME")) != NULL)
{
- snprintf(pathname, sizeof(pathname), "%s/channels.conf", home);
+ snprintf(pathname, sizeof(pathname), "%s/.tzap/channels.conf", home);
verbose("Trying to open %s", pathname);
_channels = fopen(pathname, "r");
}
Modified: redbutton-download/trunk/rb-download.c
===================================================================
--- redbutton-download/trunk/rb-download.c 2007-01-18 22:26:22 UTC (rev 184)
+++ redbutton-download/trunk/rb-download.c 2007-01-22 10:31:43 UTC (rev 185)
@@ -18,7 +18,7 @@
* rb-download needs a "channels.conf" file which gives tuning parameters for service_id's
* channels.conf files can be generated by the "scan" utility in the dvb-apps package at www.linuxtv.org
* if not specified with -f, rb-download will search for:
- * ~/channels.conf
+ * ~/.tzap/channels.conf
* /etc/channels.conf
*
* rb-download listens on the network for commands from a remote rb-browser
Modified: www/index.html
===================================================================
--- www/index.html 2007-01-18 22:26:22 UTC (rev 184)
+++ www/index.html 2007-01-22 10:31:43 UTC (rev 185)
@@ -52,7 +52,7 @@
A channels.conf files can be generated by the "scan" utility in the dvb-apps package at <A HREF="http://www.linuxtv.org">www.linuxtv.org</A>.
If not specified with -f, rb-download will search for:
<UL>
-<LI>~/channels.conf</LI>
+<LI>~/.tzap/channels.conf</LI>
<LI>/etc/channels.conf</LI>
</UL>
<P>
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|