aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Willmann <dwillmann@sysmocom.de>2021-02-12 12:21:45 +0100
committerDaniel Willmann <dwillmann@sysmocom.de>2021-02-12 12:25:30 +0100
commit64db6366fd806293008b9226a81e99028825662a (patch)
treef012468e50b1a57ef69224239aaa7bae93bde6f3
parentb7921738be929520dfe63b7a8ed7dc2f78cee1f9 (diff)
ns2: Fix incompatible VTY configs when writing config
It seems like we still don't have NS2 VTY tests running in libosmocore so this only got caught once osmo-sgsn/osmo-gbproxy builds failed. Change-Id: Id3cd407b05457a4703ee38c4b1b1b65800bbd30e Related: OS#4887
-rw-r--r--src/gb/gprs_ns2_vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gb/gprs_ns2_vty.c b/src/gb/gprs_ns2_vty.c
index 0a0a5d35..7a6b3bae 100644
--- a/src/gb/gprs_ns2_vty.c
+++ b/src/gb/gprs_ns2_vty.c
@@ -332,7 +332,7 @@ static void config_write_vbind(struct vty *vty, struct vty_bind *vbind)
vty_out(vty, " accept-ipaccess%s", VTY_NEWLINE);
if (vbind->dscp)
vty_out(vty, " dscp %u%s", vbind->dscp, VTY_NEWLINE);
- vty_out(vty, " ip-sns signalling-weight %u data-weight %u%s",
+ vty_out(vty, " ip-sns signalling-weight %u data-weight %u%s",
vbind->ip_sns_sig_weight, vbind->ip_sns_data_weight, VTY_NEWLINE);
break;
default: