mirror of
https://gitlab.nic.cz/labs/bird.git
synced 2024-12-22 01:31:55 +00:00
When reporting a bug(), call abort() instead of exit(), so that we
can analyse the core.
This commit is contained in:
parent
c304392e65
commit
818ff1e2b7
@ -114,7 +114,7 @@ bug(char *msg, ...)
|
|||||||
|
|
||||||
va_start(args, msg);
|
va_start(args, msg);
|
||||||
vlog(L_BUG[0], msg, args);
|
vlog(L_BUG[0], msg, args);
|
||||||
exit(1);
|
abort();
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user