[layer23] Fixed BA list dump

This commit is contained in:
Andreas.Eversberg 2010-07-13 17:08:00 +00:00
parent c36cca355d
commit 3837d899e1
1 changed files with 3 additions and 2 deletions

View File

@ -3335,8 +3335,9 @@ int gsm322_dump_ba_list(struct gsm322_cellsel *cs, uint16_t mcc, uint16_t mnc,
llist_for_each_entry(ba, &cs->ba_list, entry) {
if (mcc && mnc && (mcc != ba->mcc || mnc != ba->mnc))
continue;
print(priv, "Band Allocation of network: MCC %03d MNC %02d "
"(%s, %s)\n", ba->mcc, ba->mnc, gsm_get_mcc(ba->mcc),
print(priv, "Band Allocation of network: MCC %s MNC %s "
"(%s, %s)\n", gsm_print_mcc(ba->mcc),
gsm_print_mnc(ba->mnc), gsm_get_mcc(ba->mcc),
gsm_get_mnc(ba->mcc, ba->mnc));
for (i = 0; i <= 1023; i++) {
if ((ba->freq[i >> 3] & (1 << (i & 7))))