diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-16 11:03:44 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-03-16 11:03:44 +0100 |
commit | cd125ef4dab79dea218858959f3dbd757f09fcd0 (patch) | |
tree | 757c88f631ef89011139a0b7cc46b7f38df843d9 /recording.c | |
parent | ba9651e86348d56f3b7e937652f78fc0fe9e86fa (diff) | |
download | vdr-cd125ef4dab79dea218858959f3dbd757f09fcd0.tar.gz vdr-cd125ef4dab79dea218858959f3dbd757f09fcd0.tar.bz2 |
Now initializing the isOnVideoDirectoryFileSystem member of cRecording when scanning the video directory
Diffstat (limited to 'recording.c')
-rw-r--r-- | recording.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/recording.c b/recording.c index 19efa42e..d62dd9c8 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.91.1.6 2014/02/08 10:57:26 kls Exp $ + * $Id: recording.c 2.91.1.7 2014/03/16 11:03:18 kls Exp $ */ #include "recording.h" @@ -1308,6 +1308,7 @@ void cRecordings::ScanVideoDir(const char *DirName, bool Foreground, int LinkLev if (r->Name()) { r->NumFrames(); // initializes the numFrames member r->FileSizeMB(); // initializes the fileSizeMB member + r->IsOnVideoDirectoryFileSystem(); // initializes the isOnVideoDirectoryFileSystem member if (deleted) r->deleted = time(NULL); Lock(); |