0
0
mirror of https://gitlab.nic.cz/labs/bird.git synced 2024-12-21 09:11:54 +00:00

When reporting a bug(), call abort() instead of exit(), so that we

can analyse the core.
This commit is contained in:
Martin Mares 2000-05-08 12:38:00 +00:00
parent c304392e65
commit 818ff1e2b7

View File

@ -114,7 +114,7 @@ bug(char *msg, ...)
va_start(args, msg);
vlog(L_BUG[0], msg, args);
exit(1);
abort();
}
void