summaryrefslogtreecommitdiff
path: root/PLUGINS
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-09-17 10:43:54 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-09-17 10:43:54 +0200
commitcda89e7fb0a858025122dc3492a28c1560aa6bb6 (patch)
tree092e8e21c7e29f79e0eb118a704aef5385341f72 /PLUGINS
parent75587d1a1726cf6d7048e50f6c0f88c6fb9a3aef (diff)
downloadvdr-cda89e7fb0a858025122dc3492a28c1560aa6bb6.tar.gz
vdr-cda89e7fb0a858025122dc3492a28c1560aa6bb6.tar.bz2
Added a missing include statement to the 'sky' plugin
Diffstat (limited to 'PLUGINS')
-rw-r--r--PLUGINS/src/sky/HISTORY4
-rw-r--r--PLUGINS/src/sky/sky.c5
2 files changed, 7 insertions, 2 deletions
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 <sys/socket.h>
@@ -11,10 +11,11 @@
#include <sys/time.h>
#include <sys/un.h>
#include <unistd.h>
+#include <vdr/device.h>
#include <vdr/plugin.h>
#include <vdr/sources.h>
-static const char *VERSION = "0.3.3";
+static const char *VERSION = "0.3.4";
static const char *DESCRIPTION = "Sky Digibox interface";
// --- cDigiboxDevice --------------------------------------------------------