X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Socket%2FProtocols%2FDVB%2FDVBDemuxProtocol.cc;h=1a2c70e5431ce106483d6cd10172ca9c91a260e1;hb=34378cabd0ef59515f60b8e535d50fd5488c84e2;hp=d4172b3acf77214aada62afbd328e9a9b610e289;hpb=90ba247d06107cff657ad3e6310f8dde7c808c95;p=senf.git diff --git a/Socket/Protocols/DVB/DVBDemuxProtocol.cc b/Socket/Protocols/DVB/DVBDemuxProtocol.cc index d4172b3..1a2c70e 100644 --- a/Socket/Protocols/DVB/DVBDemuxProtocol.cc +++ b/Socket/Protocols/DVB/DVBDemuxProtocol.cc @@ -42,21 +42,21 @@ prefix_ void senf::DVBDemuxProtocol::setBufferSize(unsigned long size) const { if (::ioctl(body().fd(), DMX_SET_BUFFER_SIZE, size) < 0) - throw SystemException(errno); + throwErrno(); } prefix_ void senf::DVBDemuxProtocol::startFiltering() const { if (::ioctl(body().fd(), DMX_START) < 0) - throw SystemException(errno); + throwErrno(); } prefix_ void senf::DVBDemuxProtocol::stopFiltering() const { if (::ioctl(body().fd(), DMX_STOP) < 0) - throw SystemException(errno); + throwErrno(); } prefix_ bool senf::DVBDemuxProtocol::eof()