summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite_driver.c
diff options
context:
space:
mode:
authorWez Furlong <wez@php.net>2004-12-25 04:01:30 +0000
committerWez Furlong <wez@php.net>2004-12-25 04:01:30 +0000
commitc8b2f43005c977fa52e889e835dfcde445751a1a (patch)
tree31e74f03e54a393c553bc9a4ff2c2a06309a8490 /ext/pdo_sqlite/sqlite_driver.c
parent843807c6470866cec3b02973cb1e2aeec190dda0 (diff)
downloadphp-git-c8b2f43005c977fa52e889e835dfcde445751a1a.tar.gz
fix build issues
Diffstat (limited to 'ext/pdo_sqlite/sqlite_driver.c')
-rw-r--r--ext/pdo_sqlite/sqlite_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_sqlite/sqlite_driver.c b/ext/pdo_sqlite/sqlite_driver.c
index ca73ac8b54..7be1dab798 100644
--- a/ext/pdo_sqlite/sqlite_driver.c
+++ b/ext/pdo_sqlite/sqlite_driver.c
@@ -327,7 +327,7 @@ static int pdo_sqlite_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS
if (driver_options) {
timeout = pdo_attr_lval(driver_options, PDO_ATTR_TIMEOUT, timeout TSRMLS_CC);
}
- sqlite_busy_timeout(H->db, timeout * 1000);
+ sqlite3_busy_timeout(H->db, timeout * 1000);
dbh->alloc_own_columns = 1;
dbh->supports_placeholders = PDO_PLACEHOLDER_POSITIONAL;