8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-24 01:23:03 +01:00
This commit is contained in:
robocop 2009-08-05 06:35:57 +00:00
parent d22d7db86e
commit 5347ea818e

View File

@ -947,15 +947,15 @@ void create_database(BurpGlobals* tdgbl, const TEXT* file_name)
BURP_error_redirect (NULL, 32);
// msg 32 Expected database description record
if (tdgbl->gbl_sw_page_size &&
(tdgbl->gbl_sw_page_size < page_size))
{
BURP_print (110, SafeArg() << page_size << tdgbl->gbl_sw_page_size);
// msg 110 Reducing the database page size from %ld bytes to %ld bytes
}
if (tdgbl->gbl_sw_page_size)
{
if (tdgbl->gbl_sw_page_size < page_size)
{
BURP_print (110, SafeArg() << page_size << tdgbl->gbl_sw_page_size);
// msg 110 Reducing the database page size from %ld bytes to %ld bytes
}
page_size = tdgbl->gbl_sw_page_size;
}
tdgbl->hdr_forced_writes = forced_writes;