From patchwork Wed Feb 20 14:38:45 2008 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ludwig Nussel X-Patchwork-Id: 12602 Received: from ns.suse.de ([195.135.220.2] helo=mx1.suse.de) by www.linuxtv.org with esmtp (Exim 4.63) (envelope-from ) id 1JRq5y-00033V-RR for vdr@linuxtv.org; Wed, 20 Feb 2008 15:38:50 +0100 Received: from Relay1.suse.de (relay-ext.suse.de [195.135.221.8]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.suse.de (Postfix) with ESMTP id 2340E31696 for ; Wed, 20 Feb 2008 15:38:47 +0100 (CET) From: Ludwig Nussel Organization: SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nuernberg) To: vdr@linuxtv.org Date: Wed, 20 Feb 2008 15:38:45 +0100 User-Agent: KMail/1.9.6 (enterprise 20070904.708012) References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200802201538.46262.ludwig.nussel@suse.de> Subject: Re: [vdr] vdr 1.5.15 and epgsearch-0.9.23 X-BeenThere: vdr@linuxtv.org X-Mailman-Version: 2.1.9 Precedence: list Reply-To: VDR Mailing List List-Id: VDR Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Feb 2008 14:38:51 -0000 Status: O X-Status: X-Keywords: X-UID: 15811 Ville Aakko wrote: > Anybody got vdr-epgsearch working with vdr 1.5.15? In Gentoo (via > vdr-1.5 overlay ebuilds?). I use this: cu Ludwig Index: epgsearch-0.9.23/mail.c =================================================================== --- epgsearch-0.9.23.orig/mail.c +++ epgsearch-0.9.23/mail.c @@ -362,7 +362,7 @@ void cMailConflictNotifier::SendConflict std::set::iterator it; for (it = ct->failedTimers.begin(); it != ct->failedTimers.end(); it++) if ((*it) && !(*it)->ignore && (*it)->Event()) - newMailConflicts << (*it)->Event()->EventID() << "|" << (*it)->Event()->ChannelID().ToString(); + newMailConflicts << (*it)->Event()->EventID() << "|" << *(*it)->Event()->ChannelID().ToString(); } string newMailConflictsMD5 = MD5(newMailConflicts.str()); if (newMailConflictsMD5 == EPGSearchConfig.LastMailConflicts)