diff options
author | horchi <vdr@jwendel.de> | 2020-02-15 10:55:30 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2020-02-15 10:55:30 +0100 |
commit | 2387a5893be264e59e60a8f9e1c302c53b791128 (patch) | |
tree | d4d83be2ffac24eebd07af5a8854e41a592ab539 /lib/common.c | |
parent | dddd5c42b27d936f22468f95e3da0a776451dbb7 (diff) | |
download | vdr-plugin-epg2vdr-2387a5893be264e59e60a8f9e1c302c53b791128.tar.gz vdr-plugin-epg2vdr-2387a5893be264e59e60a8f9e1c302c53b791128.tar.bz2 |
2020-02-14: version 1.1.107 (horchi,seahawk1986)\n - bugfix: Fixed cleanup of image links\n - change: Improved cleanup spead for images and links\n - bugfix: Fixed time handling for timers without event\n\n1.1.107
Diffstat (limited to 'lib/common.c')
-rw-r--r-- | lib/common.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/common.c b/lib/common.c index a452b23..e6bafae 100644 --- a/lib/common.c +++ b/lib/common.c @@ -672,6 +672,11 @@ int l2hhmm(time_t t) return tm.tm_hour * 100 + tm.tm_min; } +time_t hhmm2L(int hhmm, time_t offset) +{ + return ((hhmm/100) * tmeSecondsPerHour) + ((hhmm%100) * tmeSecondsPerMinute) + offset; +} + //*************************************************************************** // HHMM to Pretty Time //*************************************************************************** @@ -977,7 +982,6 @@ int removeFile(const char* filename) if (unlink(filename) != 0) { tell(0, "Can't remove file '%s', '%s'", filename, strerror(errno)); - return 1; } @@ -1027,6 +1031,7 @@ xsltStylesheetPtr loadXSLT(const char* name, const char* path, int utf8) tell(0, "Info: Stylesheet '%s' loaded", xsltfile); free(xsltfile); + return stylesheet; } #endif |