Added a missing '|'

This commit is contained in:
Klaus Schmidinger 2018-01-26 14:34:31 +01:00
parent 4fd2870720
commit 626ae82fee
1 changed files with 2 additions and 2 deletions

4
menu.c
View File

@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
* $Id: menu.c 4.54 2018/01/17 10:21:29 kls Exp $
* $Id: menu.c 4.55 2018/01/26 14:34:31 kls Exp $
*/
#include "menu.h"
@ -4122,7 +4122,7 @@ eOSState cMenuSetupMisc::ProcessKey(eKeys Key)
bool OldSVDRPPeering = data.SVDRPPeering;
bool ModifiedSVDRPSettings = false;
if (Key == kOk)
ModifiedSVDRPSettings = data.SVDRPPeering != Setup.SVDRPPeering | strcmp(data.SVDRPHostName, Setup.SVDRPHostName);
ModifiedSVDRPSettings = data.SVDRPPeering != Setup.SVDRPPeering || strcmp(data.SVDRPHostName, Setup.SVDRPHostName);
eOSState state = cMenuSetupBase::ProcessKey(Key);
if (data.SVDRPPeering != OldSVDRPPeering)
Set();