From 05cb40d1c6556b3ed1fd4a45968f2dbaa25f1c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20=C3=96man?= Date: Sun, 19 Jul 2009 07:19:16 +0000 Subject: [PATCH] * Due to a bug, the polarisation of DVB-S muxes was not correctly stored internally. This has now been fixed. --- debian/changelog | 5 +++++ src/dvb/dvb_multiplex.c | 1 + 2 files changed, 6 insertions(+) diff --git a/debian/changelog b/debian/changelog index 40bb8235..991fe6a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,8 @@ +hts-tvheadend (2.4) hts; urgency=low + + * Due to a bug, the polarisation of DVB-S muxes was not correctly + stored internally. This has now been fixed. + hts-tvheadend (2.3) hts; urgency=low * A simple web interface has been added. To access it, visit diff --git a/src/dvb/dvb_multiplex.c b/src/dvb/dvb_multiplex.c index fc9f69f9..509351d2 100644 --- a/src/dvb/dvb_multiplex.c +++ b/src/dvb/dvb_multiplex.c @@ -168,6 +168,7 @@ dvb_mux_create(th_dvb_adapter_t *tda, struct dvb_frontend_parameters *fe_param, memcpy(&tdmi->tdmi_fe_params, fe_param, sizeof(struct dvb_frontend_parameters)); + tdmi->tdmi_polarisation = polarisation; if(sc != NULL) { tdmi->tdmi_satconf = sc;