From 8b96cd93b95e5313fc1043a412787e206601c76a Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 8 Nov 2003 15:46:29 +0100 Subject: Fixed getting the list of recordings in case VDR is started from a directory where it doesn't have access to --- recording.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'recording.c') diff --git a/recording.c b/recording.c index 77b236f4..a181ff45 100644 --- a/recording.c +++ b/recording.c @@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: recording.c 1.85 2003/10/24 15:49:00 kls Exp $ + * $Id: recording.c 1.86 2003/11/08 15:25:35 kls Exp $ */ #include "recording.h" @@ -46,7 +46,7 @@ #define SUMMARYFILESUFFIX "/summary.vdr" #define MARKSFILESUFFIX "/marks.vdr" -#define FINDCMD "find %s -follow -type d -name '%s' 2> /dev/null" +#define FINDCMD "cd '%s' && find '%s' -follow -type d -name '%s' 2> /dev/null" #define MINDISKSPACE 1024 // MB @@ -621,7 +621,7 @@ bool cRecordings::Load(bool Deleted) Clear(); bool result = false; char *cmd = NULL; - asprintf(&cmd, FINDCMD, VideoDirectory, Deleted ? "*" DELEXT : "*" RECEXT); + asprintf(&cmd, FINDCMD, VideoDirectory, VideoDirectory, Deleted ? "*" DELEXT : "*" RECEXT); FILE *p = popen(cmd, "r"); if (p) { char *s; -- cgit v1.2.3