The error message was missing a newline, and the exit behavior causes
the database to be destroyed.
ticket: 7370
target_version: 1.11.1
tags: pullup
if (log_ctx->ulog != NULL && log_ctx->ulog->kdb_first_time.seconds &&
(log_ctx->ulog->kdb_first_sno || log_ctx->ulog->kdb_last_sno)) {
fprintf(stderr, _("%s: Loads disallowed when iprop is enabled "
- "and a ulog is present"),
+ "and a ulog is present\n"),
progname);
exit_status++;
- goto error;
+ if (dumpfile)
+ fclose(f);
+ return;
}
}