aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/src/osmo-cscn/cscn_main.c
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-10 22:58:21 +0100
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-03-14 23:58:23 +0100
commit6b2623d94469f2d92117af581f12ffa270d5748d (patch)
tree34b9703b696bb24089aa9203574edd16b23853c9 /openbsc/src/osmo-cscn/cscn_main.c
parent8b1272a6d300b391efda52cac7dddab7ccc320ef (diff)
cscn: fix VTY port: don't use SGSN's port number
Diffstat (limited to 'openbsc/src/osmo-cscn/cscn_main.c')
-rw-r--r--openbsc/src/osmo-cscn/cscn_main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsc/src/osmo-cscn/cscn_main.c b/openbsc/src/osmo-cscn/cscn_main.c
index 279df0f50..30b8fc82c 100644
--- a/openbsc/src/osmo-cscn/cscn_main.c
+++ b/openbsc/src/osmo-cscn/cscn_main.c
@@ -374,9 +374,9 @@ int main(int argc, char **argv)
/* start telnet after reading config for vty_get_bind_addr() */
LOGP(DGPRS, LOGL_NOTICE, "VTY at %s %d\n",
- vty_get_bind_addr(), OSMO_VTY_PORT_SGSN);
+ vty_get_bind_addr(), OSMO_VTY_PORT_CSCN);
rc = telnet_init_dynif(tall_cscn_ctx, &cscn_network,
- vty_get_bind_addr(), OSMO_VTY_PORT_SGSN);
+ vty_get_bind_addr(), OSMO_VTY_PORT_CSCN);
if (rc < 0)
return 2;