diff options
author | Ondrej Filip <feela@network.cz> | 2000-06-06 03:00:34 +0200 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-06-06 03:00:34 +0200 |
commit | fef1badfcfb0519cca10f3561e5cb79ef9f9e969 (patch) | |
tree | 0638140f861b146c2654b625b5a8a038a35bd390 /proto/ospf/dbdes.c | |
parent | 80787d418bd028f59e34ffb08c1c221992fe3b41 (diff) | |
download | bird-fef1badfcfb0519cca10f3561e5cb79ef9f9e969.tar bird-fef1badfcfb0519cca10f3561e5cb79ef9f9e969.zip |
All die() renamed to bug().
Diffstat (limited to 'proto/ospf/dbdes.c')
-rw-r--r-- | proto/ospf/dbdes.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/dbdes.c b/proto/ospf/dbdes.c index 7278ccb..4b73733 100644 --- a/proto/ospf/dbdes.c +++ b/proto/ospf/dbdes.c @@ -133,7 +133,7 @@ ospf_dbdes_tx(struct ospf_neighbor *n) break; default: /* Ignore it */ - die("Bug in dbdes sending"); + bug("Bug in dbdes sending"); break; } } @@ -357,7 +357,7 @@ ospf_dbdes_rx(struct ospf_dbdes_packet *ps, struct proto *p, } break; defaut: - die("%s: Received dbdes from %I in unknown state.", p->name, n->ip); + bug("%s: Received dbdes from %I in undefined state.", p->name, n->ip); break; } } |