aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc
diff options
context:
space:
mode:
authorSylvain Munaut <tnt@246tNt.com>2011-11-13 23:05:23 +0100
committerSylvain Munaut <tnt@246tNt.com>2011-11-13 23:05:48 +0100
commit63ef215e154b8cfe252a05db26c4154de9dc17bc (patch)
tree3990580541979cd56a2c879b702a8f7ab784dc65 /openbsc
parentf7e94106bbae21f3f30fd4918762637b7f216075 (diff)
bsc_vty: Fix usage of deprecated osmo_osmo_hexdump_nospc
The typo was fixed upstream Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
Diffstat (limited to 'openbsc')
-rw-r--r--openbsc/src/libbsc/bsc_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsc/src/libbsc/bsc_vty.c b/openbsc/src/libbsc/bsc_vty.c
index f44611c9e..724486ff7 100644
--- a/openbsc/src/libbsc/bsc_vty.c
+++ b/openbsc/src/libbsc/bsc_vty.c
@@ -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);
}
}