From b5263ac111d5723c974ae4afe7aa3f6e5393f110 Mon Sep 17 00:00:00 2001 From: Adam Sutton Date: Wed, 12 Sep 2012 14:25:43 +0100 Subject: [PATCH] Stupid logic error I had previously fixed and obviously not committed. Fixes #1219. --- src/dvb/dvb_tables.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dvb/dvb_tables.c b/src/dvb/dvb_tables.c index a9ed0161..7a548eb9 100644 --- a/src/dvb/dvb_tables.c +++ b/src/dvb/dvb_tables.c @@ -454,7 +454,7 @@ dvb_sdt_callback(th_dvb_mux_instance_t *tdmi, uint8_t *ptr, int len, th_dvb_adapter_t *tda = tdmi->tdmi_adapter; - if (tableid != 0x42 || tableid != 0x46) return -1; + if (tableid != 0x42 && tableid != 0x46) return -1; if(len < 8) return -1;