You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-plugins/vdr-osdserver/files/vdr-osdserver-0.1.1-gentoo....

17 lines
720 B

change the default path for config directory
zulio (at) zulinux.net
diff -Naur osdserver-0.1.1.orig/osdserver.c osdserver-0.1.1/osdserver.c
--- osdserver-0.1.1.orig/osdserver.c 2007-10-07 00:34:47.000000000 +0200
+++ osdserver-0.1.1/osdserver.c 2007-11-30 20:05:54.000000000 +0100
@@ -72,7 +72,7 @@
bool cPluginOsdServer::Initialize() {
// Initialize any background activities the plugin shall perform.
- cString OsdServerHosts = AddDirectory(cPlugin::ConfigDirectory(), "osdserverhosts.conf");
+ cString OsdServerHosts = AddDirectory(cPlugin::ConfigDirectory(), "osdserver/osdserverhosts.conf");
if (access(OsdServerHosts, F_OK) == 0)
Server = new cServer(Port, OsdServerHosts);
else