summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2010-06-25 16:34:17 +0200
committerHarald Welte <laforge@gnumonks.org>2010-06-25 16:34:17 +0200
commit44239b448b8749eb79ea6eb50c228012bc88443e (patch)
treece3fcbabe1dd15bdf1b6408946e72301ae81e198 /src/host/layer23/include/osmocom
parent028dcd9e2543c4f91667c393813de24ae4e90cb8 (diff)
[layer23] make sure we recognize our own IMM ASS
When trying to re-create the header file I made the 'valid' member of the channel request history a single-bit field, but we actually assign values different than 0 and 1 to it. This has caused layer23 to consider the IMM ASS to our own channel requests as non-matching.
Diffstat (limited to 'src/host/layer23/include/osmocom')
-rw-r--r--src/host/layer23/include/osmocom/gsm48_rr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host/layer23/include/osmocom/gsm48_rr.h b/src/host/layer23/include/osmocom/gsm48_rr.h
index 002587d8..c2907030 100644
--- a/src/host/layer23/include/osmocom/gsm48_rr.h
+++ b/src/host/layer23/include/osmocom/gsm48_rr.h
@@ -90,7 +90,7 @@ struct gsm48_rr_meas {
struct gsm48_cr_hist {
uint32_t fn;
uint8_t chan_req;
- int valid:1;
+ uint8_t valid;
};
/* RR sublayer instance */