diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-09-25 11:00:57 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-09-25 11:00:57 +0200 |
commit | 9e8aac388237e7afff6cae5bbf5ee08756633f53 (patch) | |
tree | 33df2762c84b7c0981c06cb557097be0080eda1b /svdrp.c | |
parent | 83985eff479b0a287b747160b33458de38b10732 (diff) | |
download | vdr-9e8aac388237e7afff6cae5bbf5ee08756633f53.tar.gz vdr-9e8aac388237e7afff6cae5bbf5ee08756633f53.tar.bz2 |
The list of recordings is now read in a separate thread
Diffstat (limited to 'svdrp.c')
-rw-r--r-- | svdrp.c | 4 |
1 files changed, 2 insertions, 2 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.81 2005/09/18 10:50:08 kls Exp $ + * $Id: svdrp.c 1.82 2005/09/25 10:36:59 kls Exp $ */ #include "svdrp.h" @@ -890,7 +890,7 @@ void cSVDRP::CmdLSTE(const char *Option) void cSVDRP::CmdLSTR(const char *Option) { - bool recordings = Recordings.Load(); + bool recordings = Recordings.Update(true); if (*Option) { if (isnumber(Option)) { cRecording *recording = Recordings.Get(strtol(Option, NULL, 10) - 1); |