summaryrefslogtreecommitdiffstats
path: root/nest/iface.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-12-20 15:27:37 +0100
committerMartin Mares <mj@ucw.cz>1998-12-20 15:27:37 +0100
commit08c69a7720af32a82b8e2b4b9ea3742074b3b8ee (patch)
tree3405e18d16397ef85f97c34b3cd08a54ff689af0 /nest/iface.c
parentee969ea7f4c4f40020e4209b167da04d04aba52c (diff)
downloadbird-08c69a7720af32a82b8e2b4b9ea3742074b3b8ee.tar
bird-08c69a7720af32a82b8e2b4b9ea3742074b3b8ee.zip
die() -> bug() where appropriate.
Diffstat (limited to 'nest/iface.c')
-rw-r--r--nest/iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/iface.c b/nest/iface.c
index 831b3e2..ce638d2 100644
--- a/nest/iface.c
+++ b/nest/iface.c
@@ -341,7 +341,7 @@ auto_router_id(void) /* FIXME: What if we run IPv6??? */
(!j || ipa_to_u32(i->ip) < ipa_to_u32(j->ip)))
j = i;
if (!j) /* FIXME: allow configuration or running without RID */
- die("Cannot determine router ID, please configure manually");
+ bug("Cannot determine router ID, please configure manually");
router_id = ipa_to_u32(j->ip);
debug("Router ID set to %08x (%s)\n", router_id, j->name);
}