diff options
author | Ondrej Filip <feela@network.cz> | 2000-06-06 01:00:34 +0000 |
---|---|---|
committer | Ondrej Filip <feela@network.cz> | 2000-06-06 01:00:34 +0000 |
commit | fef1badfcfb0519cca10f3561e5cb79ef9f9e969 (patch) | |
tree | 0638140f861b146c2654b625b5a8a038a35bd390 /proto/ospf/lsalib.c | |
parent | 80787d418bd028f59e34ffb08c1c221992fe3b41 (diff) |
All die() renamed to bug().
Diffstat (limited to 'proto/ospf/lsalib.c')
-rw-r--r-- | proto/ospf/lsalib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/proto/ospf/lsalib.c b/proto/ospf/lsalib.c index 181f78bb..0741c795 100644 --- a/proto/ospf/lsalib.c +++ b/proto/ospf/lsalib.c @@ -176,7 +176,7 @@ htonlsab(void *h, void *n, u8 type, u16 len) } break; } - default: die("(hton): Unknown LSA"); + default: bug("(hton): Unknown LSA"); } }; @@ -273,7 +273,7 @@ ntohlsab(void *n, void *h, u8 type, u16 len) } break; } - default: die("(ntoh): Unknown LSA"); + default: bug("(ntoh): Unknown LSA"); } }; |