# # # patch "ChangeLog" # from [34243b3f9e9e57de7c7e222d20620b97edb1bbc3] # to [6769db3a8e03f10e9536f529fb425c86a5ee309f] # # patch "database.cc" # from [0f90adb5a765051661760d886a200529e8fd4b42] # to [6cf553977563b3bdfe1a469a9e1587723988fa6d] # ============================================================ --- ChangeLog 34243b3f9e9e57de7c7e222d20620b97edb1bbc3 +++ ChangeLog 6769db3a8e03f10e9536f529fb425c86a5ee309f @@ -1,3 +1,8 @@ +2006-01-23 Nathaniel Smith + + * database.cc (assert_sqlite3_ok): Improve the hint message given + for SQLITE_ERROR's. + 2006-01-23 Timothy Brownawell * tests/t_database_check_normalized.at: update included database to ============================================================ --- database.cc 0f90adb5a765051661760d886a200529e8fd4b42 +++ database.cc 6cf553977563b3bdfe1a469a9e1587723988fa6d @@ -224,7 +224,8 @@ std::string auxiliary_message = ""; if (errcode == SQLITE_ERROR) { - auxiliary_message += _("make sure database and containing directory are writeable"); + auxiliary_message += _("make sure database and containing directory are writeable\n" + "and you have not run out of disk space"); } // if the last message is empty, the \n will be stripped off too E(errcode == SQLITE_OK,