diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-22 16:19:51 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-11-22 16:19:51 +0100 |
| commit | 75a14a64a63132874f26b4715cde33e69dbf4b34 (patch) | |
| tree | bed899e3a6640f7a915faae2ba4ed9d873565370 /lib/dvb_ci | |
| parent | fb91533bb1d293bdb0691bfcc1d15da9268782fe (diff) | |
| download | enigma2-75a14a64a63132874f26b4715cde33e69dbf4b34.tar.gz enigma2-75a14a64a63132874f26b4715cde33e69dbf4b34.zip | |
add possibility to query CAID/CAPID combination from python
refs bug #621
Diffstat (limited to 'lib/dvb_ci')
| -rw-r--r-- | lib/dvb_ci/dvbci.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/dvb_ci/dvbci.cpp b/lib/dvb_ci/dvbci.cpp index 883fb5a4..342f06a6 100644 --- a/lib/dvb_ci/dvbci.cpp +++ b/lib/dvb_ci/dvbci.cpp @@ -297,8 +297,8 @@ void eDVBCIInterfaces::recheckPMTHandlers() if (!pmthandler->getProgramInfo(p)) { int cnt=0; - for (caidSet::reverse_iterator x(p.caids.rbegin()); x != p.caids.rend(); ++x, ++cnt) - caids.push_front(*x); + for (std::set<eDVBServicePMTHandler::program::capid_pair>::reverse_iterator x(p.caids.rbegin()); x != p.caids.rend(); ++x, ++cnt) + caids.push_front(x->caid); if (service && cnt) service->m_ca = caids; } |
