diff options
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 181f78b..0741c79 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"); } }; |