Minor condition fix in radio resource.

This commit is contained in:
Andreas.Eversberg 2010-05-07 23:07:30 +00:00
parent 2b5c2337ed
commit 729abf56ea
1 changed files with 1 additions and 1 deletions

View File

@ -2726,7 +2726,7 @@ static int gsm48_rr_dl_est(struct osmocom_ms *ms)
RSL_MT_ to activate channel with all the cd_now informations
#else
rsl_dec_chan_nr(rr->cd_now.chan_nr, &ch_type, &ch_subch, &ch_ts);
if (ch_type == RSL_CHAN_SDCCH4_ACCH || ch_ts != 0) {
if (ch_type != RSL_CHAN_SDCCH4_ACCH || ch_ts != 0) {
printf("Channel type not supported, exitting.\n");
exit(-ENOTSUP);
}