summaryrefslogtreecommitdiff
path: root/eit.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2002-10-11 13:23:44 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2002-10-11 13:23:44 +0200
commit6439d378067ceaf2b24ce3e19d3d0be3a261f615 (patch)
tree5ad08508a6bdba97778ee45fa89a2d7173a7acec /eit.c
parenta3c772330a6e76a0e2442909d5baf4795b38a1d1 (diff)
downloadvdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.gz
vdr-6439d378067ceaf2b24ce3e19d3d0be3a261f615.tar.bz2
Adapted type names to the new HEAD version of the driver
Diffstat (limited to 'eit.c')
-rw-r--r--eit.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/eit.c b/eit.c
index 697eec4f..17a4c984 100644
--- a/eit.c
+++ b/eit.c
@@ -16,7 +16,7 @@
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
- * $Id: eit.c 1.55 2002/10/07 16:24:04 kls Exp $
+ * $Id: eit.c 1.56 2002/10/11 13:14:57 kls Exp $
***************************************************************************/
#include "eit.h"
@@ -1196,7 +1196,11 @@ void cSIProcessor::Action()
table identifer tid */
bool cSIProcessor::AddFilter(u_char pid, u_char tid)
{
+#ifdef NEWSTRUCT
+ dmx_sct_filter_params sctFilterParams;
+#else
dmxSctFilterParams sctFilterParams;
+#endif
memset(&sctFilterParams, 0, sizeof(sctFilterParams));
sctFilterParams.pid = pid;
sctFilterParams.timeout = 0;