summaryrefslogtreecommitdiff
path: root/recording.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2011-12-10 14:14:58 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2011-12-10 14:14:58 +0100
commit773c4419ea8819279d4dfab2f46f179350bdaa51 (patch)
tree3332a0de72691b9cc2f93e9476e6762a8fca7aaf /recording.c
parent97d47b6a918fbd715ae81cb39051f3ad219772c4 (diff)
downloadvdr-773c4419ea8819279d4dfab2f46f179350bdaa51.tar.gz
vdr-773c4419ea8819279d4dfab2f46f179350bdaa51.tar.bz2
Fixed handling symbolic links in cRecordings::ScanVideoDir()
Diffstat (limited to 'recording.c')
-rw-r--r--recording.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/recording.c b/recording.c
index 6b11fbd3..2a8108bc 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.39 2011/12/04 13:51:44 kls Exp $
+ * $Id: recording.c 2.40 2011/12/10 14:12:55 kls Exp $
*/
#include "recording.h"
@@ -1105,7 +1105,7 @@ void cRecordings::ScanVideoDir(const char *DirName, bool Foreground, int LinkLev
if (strcmp(e->d_name, ".") && strcmp(e->d_name, "..")) {
char *buffer = strdup(AddDirectory(DirName, e->d_name));
struct stat st;
- if (stat(buffer, &st) == 0) {
+ if (lstat(buffer, &st) == 0) {
int Link = 0;
if (S_ISLNK(st.st_mode)) {
if (LinkLevel > MAX_LINK_LEVEL) {