diff options
author | Harald Welte <laforge@gnumonks.org> | 2010-03-25 12:11:38 +0800 |
---|---|---|
committer | Harald Welte <laforge@gnumonks.org> | 2010-03-25 12:11:38 +0800 |
commit | 52b4abdcb351830f5493a50c4181ef3947f3feab (patch) | |
tree | 3df286d1e10dbfe449206032cc9d627434799a41 /include | |
parent | 9eb6d88d644c9e7d85177c39f12952fd2f4d9138 (diff) |
replace rsl_rlm_cause_strs with rsl_rlm_cause_name()
Diffstat (limited to 'include')
-rw-r--r-- | include/osmocore/rsl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/osmocore/rsl.h b/include/osmocore/rsl.h index c1080812..99b90d68 100644 --- a/include/osmocore/rsl.h +++ b/include/osmocore/rsl.h @@ -16,9 +16,8 @@ uint8_t rsl_enc_chan_nr(uint8_t type, uint8_t subch, uint8_t timeslot); /* decode channel number as per Section 9.3.1 */ int rsl_dec_chan_nr(uint8_t chan_nr, uint8_t *type, uint8_t *subch, uint8_t *timeslot); -extern const struct value_string rsl_rlm_cause_strs[]; - const char *rsl_err_name(uint8_t err); +const char *rsl_rlm_cause_name(uint8_t err); /* Section 3.3.2.3 TS 05.02. I think this looks like a table */ int rsl_ccch_conf_to_bs_cc_chans(int ccch_conf); |