From 684ee69efa8df530814a868ec32abbd48d158450 Mon Sep 17 00:00:00 2001 From: thlo Date: Sat, 29 Dec 2012 00:39:18 +0100 Subject: another change of start to Start() --- vdr-smarttvweb/httpresource.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 %s\r\n", buff, recording->HierarchyLevels(), recording->FileName(), recording->Name()); hdr += f; *mResponseMessage += hdr; -- cgit v1.2.3