diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2003-02-02 18:00:00 +0100 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2003-02-02 18:00:00 +0100 |
commit | 8c5d735d3279230f6471e474a946a5733054df43 (patch) | |
tree | 34f72e8bcb3a8fc93a9e6cc752fc19f6d95ce7e7 /eit.c | |
parent | a3942b4d17a3a7e1af82b1950c39db1f9c7ce250 (diff) | |
download | vdr-patch-lnbsharing-8c5d735d3279230f6471e474a946a5733054df43.tar.gz vdr-patch-lnbsharing-8c5d735d3279230f6471e474a946a5733054df43.tar.bz2 |
Version 1.1.23vdr-1.1.23
- Fixed a new/delete malloc/free mismatch in ringbuffer.c (thanks to Stefan
Huelswitt for reporting this one).
- Improved CAM handling.
Diffstat (limited to 'eit.c')
-rw-r--r-- | eit.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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.64 2003/01/26 12:21:15 kls Exp $ + * $Id: eit.c 1.65 2003/02/02 15:41:03 kls Exp $ ***************************************************************************/ #include "eit.h" @@ -1349,7 +1349,7 @@ void cSIProcessor::Action() /** Add a filter with packet identifier pid and table identifer tid */ -bool cSIProcessor::AddFilter(u_char pid, u_char tid) +bool cSIProcessor::AddFilter(unsigned short pid, u_char tid) { dmx_sct_filter_params sctFilterParams; memset(&sctFilterParams, 0, sizeof(sctFilterParams)); @@ -1390,7 +1390,7 @@ bool cSIProcessor::AddFilter(u_char pid, u_char tid) return false; } -bool cSIProcessor::DelFilter(u_char pid, u_char tid) +bool cSIProcessor::DelFilter(unsigned short pid, u_char tid) { for (int a = 0; a < MAX_FILTERS; a++) { |