diff options
Diffstat (limited to 'nest/iface.c')
-rw-r--r-- | nest/iface.c | 2 |
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); } |