8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 05:23:03 +01:00

Fixed assertion during restore.

This commit is contained in:
dimitr 2011-03-03 14:12:07 +00:00
parent 0102a5c9fc
commit d640d04922

View File

@ -1589,13 +1589,13 @@ void BURP_print_warning(const ISC_STATUS* status_vector)
if (fb_interpret(s, sizeof(s), &vector))
{
BURP_msg_partial(true, 255); // msg 255: gbak: WARNING:
burp_output(true, "%s\n", s);
BURP_msg_partial(false, 255); // msg 255: gbak: WARNING:
burp_output(false, "%s\n", s);
while (fb_interpret(s, sizeof(s), &vector))
{
BURP_msg_partial(true, 255); // msg 255: gbak: WARNING:
burp_output(true, " %s\n", s);
BURP_msg_partial(false, 255); // msg 255: gbak: WARNING:
burp_output(false, " %s\n", s);
}
}
}