bsc_vty: Fix usage of deprecated osmo_osmo_hexdump_nospc

The typo was fixed upstream

Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
This commit is contained in:
Sylvain Munaut 2011-11-13 23:05:23 +01:00
parent f7e94106bb
commit 63ef215e15
1 changed files with 1 additions and 1 deletions

View File

@ -509,7 +509,7 @@ static void config_write_bts_single(struct vty *vty, struct gsm_bts *bts)
get_value_string(osmo_sitype_strs, i), VTY_NEWLINE);
vty_out(vty, " system-information %s static %s%s",
get_value_string(osmo_sitype_strs, i),
osmo_osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
osmo_hexdump_nospc(bts->si_buf[i], sizeof(bts->si_buf[i])),
VTY_NEWLINE);
}
}