corrected caption

This commit is contained in:
Andreas Steffen 2008-08-21 11:58:58 +00:00
parent 5cd07d18a3
commit dc6a2edd0d
1 changed files with 1 additions and 1 deletions

View File

@ -295,7 +295,7 @@ static db_driver_t get_driver(private_sqlite_database_t *this)
*/
static int busy_handler(private_sqlite_database_t *this, int count)
{
/* add an sleep, exponentially longer on every try */
/* add a backoff time, quadratically increasing with every try */
usleep(count * count * 1000);
/* always retry */
return 1;