artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
634122e
)
Print a missing "metric" before the actual metric when printing a
author
renato
<renato@openbsd.org>
Tue, 27 Oct 2015 03:23:30 +0000
(
03:23
+0000)
committer
renato
<renato@openbsd.org>
Tue, 27 Oct 2015 03:23:30 +0000
(
03:23
+0000)
redistribute line.
usr.sbin/eigrpd/printconf.c
patch
|
blob
|
history
diff --git
a/usr.sbin/eigrpd/printconf.c
b/usr.sbin/eigrpd/printconf.c
index
a5eb6fd
..
0f50d8b
100644
(file)
--- a/
usr.sbin/eigrpd/printconf.c
+++ b/
usr.sbin/eigrpd/printconf.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: printconf.c,v 1.
3 2015/10/21 03:52:12
renato Exp $ */
+/* $OpenBSD: printconf.c,v 1.
4 2015/10/27 03:23:30
renato Exp $ */
/*
* Copyright (c) 2015 Renato Westphal <renato@openbsd.org>
@@
-100,8
+100,10
@@
print_redistribute(struct eigrp *eigrp)
break;
}
- if (r->metric)
+ if (r->metric) {
+ printf(" metric");
print_redist_metric(r->metric);
+ }
printf("\n");
}
}