(_hx509_abort): add newline to output and flush stdout

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16449 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-01-03 16:31:14 +00:00
parent 231e28c6f4
commit 6791e8dbf7

View File

@@ -80,6 +80,8 @@ _hx509_abort(const char *fmt, ...)
va_start(ap, fmt);
vprintf(fmt, ap);
va_end(ap);
printf("\n");
fflush(stdout);
abort();
}