summaryrefslogtreecommitdiff
path: root/vdr-smarttvweb/httpresource.c
diff options
context:
space:
mode:
Diffstat (limited to 'vdr-smarttvweb/httpresource.c')
-rw-r--r--vdr-smarttvweb/httpresource.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vdr-smarttvweb/httpresource.c b/vdr-smarttvweb/httpresource.c
index 175c258..1a5bd3b 100644
--- a/vdr-smarttvweb/httpresource.c
+++ b/vdr-smarttvweb/httpresource.c
@@ -1707,7 +1707,8 @@ int cHttpResource::sendRecordingsHtml(struct stat *statbuf) {
char f[400];
for (cRecording *recording = Recordings.First(); recording; recording = Recordings.Next(recording)) {
hdr = "";
- strftime(buff, 20, "%Y-%m-%d %H:%M:%S", localtime(&recording->start));
+ time_t start_time = recording->Start();
+ strftime(buff, 20, "%Y-%m-%d %H:%M:%S", localtime(&start_time));
snprintf(f, sizeof(f), "%s - %d <A HREF=\"%s\">%s</A>\r\n", buff, recording->HierarchyLevels(), recording->FileName(), recording->Name());
hdr += f;
*mResponseMessage += hdr;