diff options
author | Ondrej Filip <feela@majklik.network.cz> | 2010-01-07 23:03:19 +0100 |
---|---|---|
committer | Ondrej Filip <feela@majklik.network.cz> | 2010-01-07 23:03:19 +0100 |
commit | 18722dc98c57af6bfa2d9b967417b65db263e5ca (patch) | |
tree | 22cfdb4bdbff89e62748966d941ee772389222da /proto/ospf | |
parent | 3127b81755de4a09475df71072964e292c6994a7 (diff) | |
download | bird-18722dc98c57af6bfa2d9b967417b65db263e5ca.tar bird-18722dc98c57af6bfa2d9b967417b65db263e5ca.zip |
Bugfix in DBG call.
Diffstat (limited to 'proto/ospf')
-rw-r--r-- | proto/ospf/iface.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/ospf/iface.c b/proto/ospf/iface.c index e6cdd1f..a9c6741 100644 --- a/proto/ospf/iface.c +++ b/proto/ospf/iface.c @@ -236,7 +236,8 @@ ospf_iface_sm(struct ospf_iface *ifa, int event) { struct ospf_area *oa = ifa->oa; - DBG("SM on iface %s. Event is '%s'\n", ifa->iface->name, ospf_ism[event]); + DBG("SM on %s %s. Event is '%s'\n", (ifa->type == OSPF_IT_VLINK) ? "vlink" : "iface", + ifa->iface ? ifa->iface->name : "(none)" , ospf_ism[event]); switch (event) { |