summaryrefslogtreecommitdiff
path: root/svdrp.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2005-09-25 11:00:57 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2005-09-25 11:00:57 +0200
commit9e8aac388237e7afff6cae5bbf5ee08756633f53 (patch)
tree33df2762c84b7c0981c06cb557097be0080eda1b /svdrp.c
parent83985eff479b0a287b747160b33458de38b10732 (diff)
downloadvdr-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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/svdrp.c b/svdrp.c
index 68570b85..cc5df706 100644
--- a/svdrp.c
+++ b/svdrp.c
@@ -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);