aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-08-20 16:33:47 +0200
committerNeels Hofmeyr <nhofmeyr@sysmocom.de>2016-08-20 16:33:47 +0200
commit898e1d878e47298f97289e50f9b0cca7ecdf2ed7 (patch)
tree1f385145c1349c57316ad851cb8f7e11bb29f652
parentfef2fa224a754df3f9792d1ddcd3a6d9a73658b1 (diff)
vty: use VTY_BIND_ADDR_DEFAULT instead of "127.0.0.1"
-rw-r--r--src/vty/vty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vty/vty.c b/src/vty/vty.c
index 8c0c73ab..88ed9374 100644
--- a/src/vty/vty.c
+++ b/src/vty/vty.c
@@ -1678,7 +1678,7 @@ static int vty_config_write(struct vty *vty)
vty_out(vty, " no login%s", VTY_NEWLINE);
/* bind */
- if (vty_bind_addr && (strcmp(vty_bind_addr, "127.0.0.1") != 0))
+ if (vty_bind_addr && (strcmp(vty_bind_addr, VTY_BIND_ADDR_DEFAULT) != 0))
vty_out(vty, " bind %s%s", vty_bind_addr, VTY_NEWLINE);
vty_out(vty, "!%s", VTY_NEWLINE);