diff options
author | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
---|---|---|
committer | Klaus Schmidinger <kls (at) cadsoft (dot) de> | 2002-04-07 18:00:00 +0200 |
commit | c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27 (patch) | |
tree | 5c60d0e45adc0cb556840fd48fa182a877184802 /eit.diff | |
parent | 262327908d329a8c292d8ae71fe9d135390a3cde (diff) | |
download | vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.gz vdr-patch-lnbsharing-c9a5d8ea5328e4a8bcb0c3423b825c02cb0c3b27.tar.bz2 |
Version 1.0.0vdr-1.0.0
- Fixed a problem with wrong EPG data in the Schedules menu (thanks to Tobias
Kerner, problem was initially reported by Michel Moster, but somehow I had
misplaced his message...).
- Added Spanish language texts (thanks to Ruben Nunez Francisco).
- Fixed resetting the "First day" timer parameter once the timer actually starts
recording.
- Fixed the still picture workaround in case the progress display is active
(thanks to Gerald Raaf).
- Fixed a problem with accessing the epg.data file before it is fully written
(thanks to Thilo Wunderlich for reporting this one).
- Now the EPG scan skips channels that have their 'Ca' parameter explicitly set
to an other DVB card (suggested by Sergei Haller).
- Fixed a possible hangup when reading a broken epg.data file (thanks to Henning
Holtschneider for pointing this one out).
- Fixed a bug in the editing process in case a previously edited file with the
same name was manually deleted on a system with more than one video directory
(thanks to Dirk Wiebel for reporting this one).
Diffstat (limited to 'eit.diff')
-rw-r--r-- | eit.diff | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/eit.diff b/eit.diff deleted file mode 100644 index 57584b9..0000000 --- a/eit.diff +++ /dev/null @@ -1,25 +0,0 @@ -# This is a BitKeeper generated patch for the following project: -# Project Name: Linux VDR -# This patch format is intended for GNU patch command version 2.5 or higher. -# This patch includes the following deltas: -# ChangeSet 1.21 -> 1.22 -# eit.c 1.6 -> 1.7 -# -# The following is the BitKeeper ChangeSet Log -# -------------------------------------------- -# 02/04/01 aschultz@warp10.net 1.22 -# fix segfault in eit.c -# -------------------------------------------- -# -diff -Nru a/eit.c b/eit.c ---- a/eit.c Mon Apr 1 14:38:00 2002 -+++ b/eit.c Mon Apr 1 14:38:00 2002 -@@ -559,7 +559,7 @@ - pSubtitle = compactspace(pSubtitle); - pExtendedDescription = compactspace(pExtendedDescription); - // Remove superfluous hyphens: -- if (pExtendedDescription) { -+ if (pExtendedDescription && strlen(pExtendedDescription) >= 3) { - char *p = pExtendedDescription + 1; - while (*p) { - if (*p == '-' && *(p + 1) == ' ' && *(p + 2) && islower(*(p - 1)) && islower(*(p + 2))) { |