[nat] Fix the imsi deny config write.

This commit is contained in:
Holger Hans Peter Freyther
2010-05-14 23:06:09 +08:00
parent 1ae7b7c372
commit 980c84f0a3

View File

@@ -55,7 +55,7 @@ static int config_write_nat(struct vty *vty)
if (_nat->imsi_allow)
vty_out(vty, " imsi allow %s%s", _nat->imsi_allow, VTY_NEWLINE);
if (_nat->imsi_deny)
vty_out(vty, " insi deny %s%s", _nat->imsi_deny, VTY_NEWLINE);
vty_out(vty, " imsi deny %s%s", _nat->imsi_deny, VTY_NEWLINE);
vty_out(vty, " msc ip %s%s", _nat->msc_ip, VTY_NEWLINE);
vty_out(vty, " msc port %d%s", _nat->msc_port, VTY_NEWLINE);
vty_out(vty, " timeout auth %d%s", _nat->auth_timeout, VTY_NEWLINE);