aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2016-05-23 17:28:13 +0200
committerHolger Freyther <holger@freyther.de>2016-05-23 16:24:40 +0000
commitea8e98351411709fbc78ccf6713b080789288b3a (patch)
tree7fd32dc1830cf2f48b9d86910ec6613cea9ade8b
parent7184bd088e11cfe6b907af2fcce48369fd2f21f1 (diff)
Fix copy-paste error in SI6
Fix error which prevented enabling DTX for half-rate channels. Change-Id: I7d41df0068783c8fb33ddeeab1d1dcf63c2c259f Reviewed-on: https://gerrit.osmocom.org/101 Tested-by: Jenkins Builder Reviewed-by: Holger Freyther <holger@freyther.de>
-rw-r--r--openbsc/src/libbsc/system_information.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libbsc/system_information.c b/openbsc/src/libbsc/system_information.c
index 1f1d81e31..bf203944d 100644
--- a/openbsc/src/libbsc/system_information.c
+++ b/openbsc/src/libbsc/system_information.c
@@ -932,7 +932,7 @@ static int generate_si6(uint8_t *output, struct gsm_bts *bts)
si6->cell_options = bts->si_common.cell_options;
si6->ncc_permitted = bts->si_common.ncc_permitted;
/* allow/disallow DTXu */
- gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, true);
+ gsm48_set_dtx(&si6->cell_options, bts->dtxu, bts->dtxu, false);
/* SI6 Rest Octets: 10.5.2.35a: PCH / NCH info, VBS/VGCS options */