From cda89e7fb0a858025122dc3492a28c1560aa6bb6 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 17 Sep 2005 10:43:54 +0200 Subject: [PATCH] Added a missing include statement to the 'sky' plugin --- CONTRIBUTORS | 1 + HISTORY | 2 ++ PLUGINS/src/sky/HISTORY | 4 ++++ PLUGINS/src/sky/sky.c | 5 +++-- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index 0dccb7d7..f3c8522d 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -881,6 +881,7 @@ Alfred Zastrow for reporting a bug in handling menu status messages when the list contents is scrolled for reporting that without the usleep() call in cDvbPlayer::Action() VDR runs on NPTL systems + for reporting a missing include statement in the 'sky' plugin Matthias Raus for reporting a problem with starting the editing process if no marks have been set diff --git a/HISTORY b/HISTORY index 174a211b..f76de83a 100644 --- a/HISTORY +++ b/HISTORY @@ -3815,3 +3815,5 @@ Video Disk Recorder Revision History - Added cChannel::LinkChannels() and cChannel::RefChannel() (suggested by Helmut Auer). Note that VDR itself doesn't actually use the linked channels, yet, so there is no guarantee that this really works under all circumstances. +- Added a missing include statement to the 'sky' plugin (thanks to Alfred Zastrow + for reporting this one). diff --git a/PLUGINS/src/sky/HISTORY b/PLUGINS/src/sky/HISTORY index 2fed4c36..9d405751 100644 --- a/PLUGINS/src/sky/HISTORY +++ b/PLUGINS/src/sky/HISTORY @@ -37,3 +37,7 @@ VDR Plugin 'sky' Revision History - Made several functions threadsafe. - Removed delay_ms(), using cCondWait::SleepMs() instead. + +2005-09-17: Version 0.3.4 + +- Added a missing include statement. diff --git a/PLUGINS/src/sky/sky.c b/PLUGINS/src/sky/sky.c index bf4fa428..cbb927bb 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.11 2004/12/26 12:45:22 kls Exp $ + * $Id: sky.c 1.12 2005/09/17 10:39:35 kls Exp $ */ #include @@ -11,10 +11,11 @@ #include #include #include +#include #include #include -static const char *VERSION = "0.3.3"; +static const char *VERSION = "0.3.4"; static const char *DESCRIPTION = "Sky Digibox interface"; // --- cDigiboxDevice --------------------------------------------------------