summaryrefslogtreecommitdiff
path: root/proto
diff options
context:
space:
mode:
authorOndrej Zajicek <santiago@crfreenet.org>2012-01-09 03:20:52 +0100
committerOndrej Zajicek <santiago@crfreenet.org>2012-01-09 03:21:45 +0100
commit8cf8f820fe66af1755e360ea1c5179483766131d (patch)
tree03791d87d3adb4638ad1919f8ae9232a09f6178c /proto
parentd7f469c15c1fd8315061f85b87a19946c3ea4700 (diff)
Show interface for link-local gw in static protocol.
Diffstat (limited to 'proto')
-rw-r--r--proto/static/static.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/static/static.c b/proto/static/static.c
index 3323c7ee..f6c2a33f 100644
--- a/proto/static/static.c
+++ b/proto/static/static.c
@@ -539,7 +539,7 @@ static_show_rt(struct static_route *r)
switch (r->dest)
{
- case RTD_ROUTER: bsprintf(via, "via %I", r->via); break;
+ case RTD_ROUTER: bsprintf(via, "via %I%J", r->via, r->via_if); break;
case RTD_DEVICE: bsprintf(via, "dev %s", r->if_name); break;
case RTD_BLACKHOLE: bsprintf(via, "blackhole"); break;
case RTD_UNREACHABLE: bsprintf(via, "unreachable"); break;
@@ -553,7 +553,7 @@ static_show_rt(struct static_route *r)
struct static_route *r2;
if (r->dest == RTD_MULTIPATH)
for (r2 = r->mp_next; r2; r2 = r2->mp_next)
- cli_msg(-1009, "\tvia %I weight %d%s", r2->via, r2->masklen + 1, /* really */
+ cli_msg(-1009, "\tvia %I%J weight %d%s", r2->via, r2->via_if, r2->masklen + 1, /* really */
r2->installed ? "" : " (dormant)");
}