diff options
author | Frank M. Kromann <fmk@php.net> | 2007-01-15 01:56:09 +0000 |
---|---|---|
committer | Frank M. Kromann <fmk@php.net> | 2007-01-15 01:56:09 +0000 |
commit | c2cfc1eeee43ed8429252369b05081444df62f57 (patch) | |
tree | d7d8845ce09b187bc65c744c0467d837e6467a79 /ext/pdo_dblib | |
parent | d4fbb3ca53f00d8df178dbb83c0979e69d450c65 (diff) | |
download | php-git-c2cfc1eeee43ed8429252369b05081444df62f57.tar.gz |
Fix mysql -> dblib
Diffstat (limited to 'ext/pdo_dblib')
-rw-r--r-- | ext/pdo_dblib/dblib_stmt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/pdo_dblib/dblib_stmt.c b/ext/pdo_dblib/dblib_stmt.c index 3be4876a3c..54f5ac08af 100644 --- a/ext/pdo_dblib/dblib_stmt.c +++ b/ext/pdo_dblib/dblib_stmt.c @@ -250,9 +250,9 @@ static int pdo_dblib_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_da return 1; } -static int dblib_mysql_stmt_cursor_closer(pdo_stmt_t *stmt TSRMLS_DC) +static int dblib_dblib_stmt_cursor_closer(pdo_stmt_t *stmt TSRMLS_DC) { - pdo_dblib_stmt *S = (pdo_mysql_stmt*)stmt->driver_data; + pdo_dblib_stmt *S = (pdo_dblib_stmt*)stmt->driver_data; if (S->rows) { free_rows(S TSRMLS_CC); @@ -273,6 +273,6 @@ struct pdo_stmt_methods dblib_stmt_methods = { NULL, /* get attr */ NULL, /* meta */ NULL, /* nextrow */ - dblib_mysql_stmt_cursor_closer + dblib_dblib_stmt_cursor_closer }; |