From f1000d75c0201ff90b8daf2a39c8390f432c66a5 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 30 Sep 2012 13:05:14 +0200 Subject: Added 'IgnoreFiles' to RemoveEmptyDirectories() --- recording.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'recording.c') diff --git a/recording.c b/recording.c index dc77a84c..1eeb82d0 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 2.63 2012/09/29 10:04:55 kls Exp $ + * $Id: recording.c 2.64 2012/09/30 13:05:14 kls Exp $ */ #include "recording.h" @@ -107,8 +107,10 @@ void cRemoveDeletedRecordingsThread::Action(void) } r = DeletedRecordings.Next(r); } - if (deleted) - RemoveEmptyVideoDirectories(); + if (deleted) { + const char *IgnoreFiles[] = { SORTMODEFILE, NULL }; + RemoveEmptyVideoDirectories(IgnoreFiles); + } } } -- cgit v1.2.3