fix off-by-one error in BS11 factory logon command

This commit is contained in:
Harald Welte 2009-01-28 20:42:07 +00:00
parent 97cce476a2
commit bb15131847
1 changed files with 1 additions and 1 deletions

View File

@ -816,7 +816,7 @@ int abis_nm_bs11_set_trx_power(struct gsm_bts_trx *trx, u_int8_t level)
static const u_int8_t bs11_logon_c7[] =
{ 0x07, 0xd9, 0x01, 0x11, 0x0d, 0x10, 0x20 };
static const u_int8_t bs11_logon_c8[] = { 0x01, 0x02 };
static const u_int8_t bs11_logon_c8[] = { 0x02 };
static const u_int8_t bs11_logon_c9[] = "FACTORY";
int abis_nm_bs11_factory_logon(struct gsm_bts *bts, int on)