Deleted Added
full compact
31c31
< __FBSDID("$FreeBSD: head/sbin/hastd/pjdlog.c 210873 2010-08-05 18:23:43Z pjd $");
---
> __FBSDID("$FreeBSD: head/sbin/hastd/pjdlog.c 210875 2010-08-05 18:26:38Z pjd $");
367a368,387
>
> /*
> * Log assertion and exit.
> */
> void
> pjdlog_verify(const char *func, const char *file, int line,
> const char *failedexpr)
> {
>
> if (func == NULL) {
> pjdlog_critical("Assertion failed: (%s), file %s, line %d.",
> failedexpr, file, line);
> } else {
> pjdlog_critical("Assertion failed: (%s), function %s, file %s, line %d.",
> failedexpr, func, file, line);
> }
> abort();
> /* NOTREACHED */
> }
>