From 1d3495a0f09b1949efbba553a3d2a152ad2be617 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 19 Dec 2004 16:33:34 +0100 Subject: Made several functions threadsafe --- PLUGINS/src/sky/HISTORY | 4 ++++ PLUGINS/src/sky/sky.c | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) (limited to 'PLUGINS/src/sky') diff --git a/PLUGINS/src/sky/HISTORY b/PLUGINS/src/sky/HISTORY index 490ee62b..f1f22a69 100644 --- a/PLUGINS/src/sky/HISTORY +++ b/PLUGINS/src/sky/HISTORY @@ -32,3 +32,7 @@ VDR Plugin 'sky' Revision History 2004-12-12: Version 0.3.2 - Changed Apid access in cChannel. + +2004-12-19: Version 0.3.3 + +- Made several functions threadsafe. diff --git a/PLUGINS/src/sky/sky.c b/PLUGINS/src/sky/sky.c index 8936774e..49afea1d 100644 --- a/PLUGINS/src/sky/sky.c +++ b/PLUGINS/src/sky/sky.c @@ -3,7 +3,7 @@ * * See the README file for copyright information and how to reach the author. * - * $Id: sky.c 1.8 2004/12/12 14:27:33 kls Exp $ + * $Id: sky.c 1.9 2004/12/19 15:33:47 kls Exp $ */ #include @@ -14,7 +14,7 @@ #include #include -static const char *VERSION = "0.3.2"; +static const char *VERSION = "0.3.3"; static const char *DESCRIPTION = "Sky Digibox interface"; // --- cDigiboxDevice -------------------------------------------------------- @@ -273,7 +273,7 @@ bool cPluginSky::Initialize(void) // Initialize any background activities the plugin shall perform. const char *ConfigDir = ConfigDirectory(Name()); if (ConfigDir) { - if (SkyChannels.Load(AddDirectory(ConfigDir, "channels.conf.sky"), true)) { + if (SkyChannels.Load(*cAddDirectory(ConfigDir, "channels.conf.sky"), true)) { new cDigiboxDevice; return true; } -- cgit v1.2.3