vty: Fix the byteorder... of the bound_ip

We are storing the bound_ip in host byteorder but when
using ntohl we need to convert it back to to network
byte order.
This commit is contained in:
Holger Hans Peter Freyther 2010-04-07 15:39:16 +02:00
parent 3c71232b11
commit 54fa799129
1 changed files with 1 additions and 1 deletions

View File

@ -616,7 +616,7 @@ static void lchan_dump_vty(struct vty *vty, struct gsm_lchan *lchan)
vty_out(vty, " No Subscriber%s", VTY_NEWLINE);
if (is_ipaccess_bts(lchan->ts->trx->bts)) {
struct in_addr ia;
ia.s_addr = lchan->abis_ip.bound_ip;
ia.s_addr = htonl(lchan->abis_ip.bound_ip);
vty_out(vty, " Bound IP: %s Port %u RTP_TYPE2=%u CONN_ID=%u%s",
inet_ntoa(ia), lchan->abis_ip.bound_port,
lchan->abis_ip.rtp_payload2, lchan->abis_ip.conn_id,