diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-22 13:29:24 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-12-22 13:29:24 +0100 |
commit | 7ff59171e3f907a5584b72f0f8588ed65f22c0bd (patch) | |
tree | 801b1b65840c50a4f1d8abea806fa5c180051df1 /svdrp.c | |
parent | 84b99ea81095f421ec049dd6b5bd5f0f2fe679c1 (diff) | |
download | vdr-7ff59171e3f907a5584b72f0f8588ed65f22c0bd.tar.gz vdr-7ff59171e3f907a5584b72f0f8588ed65f22c0bd.tar.bz2 |
Changed section handling; replaced 'libdtv' with 'libsi'
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -10,7 +10,7 @@ * and interact with the Video Disk Recorder - or write a full featured * graphical interface that sits on top of an SVDRP connection. * - * $Id: svdrp.c 1.55 2003/08/31 11:24:47 kls Exp $ + * $Id: svdrp.c 1.56 2003/12/21 13:37:10 kls Exp $ */ #include "svdrp.h" @@ -155,7 +155,7 @@ bool cPUTEhandler::Process(const char *s) else { rewind(f); if (cSchedules::Read(f)) { - cSIProcessor::TriggerDump(); + cSchedules::Cleanup(true); status = 250; message = "EPG data processed"; } @@ -458,7 +458,7 @@ void cSVDRP::CmdCHAN(const char *Option) void cSVDRP::CmdCLRE(const char *Option) { - cSIProcessor::Clear(); + cSchedules::ClearAll(); Reply(250, "EPG data cleared"); } @@ -707,8 +707,8 @@ void cSVDRP::CmdLSTC(const char *Option) void cSVDRP::CmdLSTE(const char *Option) { - cMutexLock MutexLock; - const cSchedules *Schedules = cSIProcessor::Schedules(MutexLock); + cSchedulesLock SchedulesLock; + const cSchedules *Schedules = cSchedules::Schedules(SchedulesLock); if (Schedules) { FILE *f = fdopen(file, "w"); if (f) { |