From d54c337a831319271f453a8a2e2c50d54b51a404 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Thu, 19 Nov 2009 16:37:48 +0100 Subject: [PATCH] [vty] Write out the neci configuration --- openbsc/src/vty_interface.c | 1 + 1 file changed, 1 insertion(+) diff --git a/openbsc/src/vty_interface.c b/openbsc/src/vty_interface.c index 7ac0216c6..09575d06b 100644 --- a/openbsc/src/vty_interface.c +++ b/openbsc/src/vty_interface.c @@ -274,6 +274,7 @@ static int config_write_net(struct vty *vty) vty_out(vty, " long name %s%s", gsmnet->name_long, VTY_NEWLINE); vty_out(vty, " auth policy %s%s", gsm_auth_policy_name(gsmnet->auth_policy), VTY_NEWLINE); vty_out(vty, " encryption a5 %u%s", gsmnet->a5_encryption, VTY_NEWLINE); + vty_out(vty, " neci %u%s", gsmnet->neci, VTY_NEWLINE); return CMD_SUCCESS; }