diff options
author | 2015-09-27 17:31:50 +0000 | |
---|---|---|
committer | 2015-09-27 17:31:50 +0000 | |
commit | 18ffdd9451bdbfe12cfc5ad3ca892e204f4b4047 (patch) | |
tree | 9315b67d57330fdf752cf0432a8f4fdc76c2a975 /usr.sbin/ospfd/ospfd.c | |
parent | As done for bgpd recently, rename if_mediatype to if_type in ldpd. (diff) | |
download | wireguard-openbsd-18ffdd9451bdbfe12cfc5ad3ca892e204f4b4047.tar.xz wireguard-openbsd-18ffdd9451bdbfe12cfc5ad3ca892e204f4b4047.zip |
As done for bgpd recently, rename if_mediatype to if_type in ospfd/ospf6d.
And some ifmedia64 fixes.
"move forward" deraadt@
Diffstat (limited to 'usr.sbin/ospfd/ospfd.c')
-rw-r--r-- | usr.sbin/ospfd/ospfd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ospfd/ospfd.c b/usr.sbin/ospfd/ospfd.c index 7fdf9327826..d821f0a9b35 100644 --- a/usr.sbin/ospfd/ospfd.c +++ b/usr.sbin/ospfd/ospfd.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ospfd.c,v 1.85 2015/07/20 23:45:39 benno Exp $ */ +/* $OpenBSD: ospfd.c,v 1.86 2015/09/27 17:31:50 stsp Exp $ */ /* * Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org> @@ -862,7 +862,7 @@ merge_interfaces(struct area *a, struct area *xa) i->self->priority = i->priority; i->flags = xi->flags; /* needed? */ i->type = xi->type; /* needed? */ - i->media_type = xi->media_type; /* needed? */ + i->if_type = xi->if_type; /* needed? */ i->linkstate = xi->linkstate; /* needed? */ i->auth_type = xi->auth_type; |