summaryrefslogtreecommitdiff
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1998-12-20 14:27:37 +0000
committerMartin Mares <mj@ucw.cz>1998-12-20 14:27:37 +0000
commit08c69a7720af32a82b8e2b4b9ea3742074b3b8ee (patch)
tree3405e18d16397ef85f97c34b3cd08a54ff689af0 /nest/rt-table.c
parentee969ea7f4c4f40020e4209b167da04d04aba52c (diff)
die() -> bug() where appropriate.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index b35297bb..0ccb8da6 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -97,7 +97,7 @@ rte_better(rte *new, rte *old)
if (new->attrs->proto != old->attrs->proto)
{
/* FIXME!!! */
- die("Different protocols, but identical preferences => oops");
+ bug("Different protocols, but identical preferences => oops");
}
if (better = new->attrs->proto->rte_better)
return better(new, old);