fmk Mon Jan 15 01:56:09 2007 UTC Modified files: (Branch: PHP_5_2) /php-src/ext/pdo_dblib dblib_stmt.c Log: Fix mysql -> dblib http://cvs.php.net/viewvc.cgi/php-src/ext/pdo_dblib/dblib_stmt.c?r1=1.6.2.2.2.3&r2=1.6.2.2.2.4&diff_format=u Index: php-src/ext/pdo_dblib/dblib_stmt.c diff -u php-src/ext/pdo_dblib/dblib_stmt.c:1.6.2.2.2.3 php-src/ext/pdo_dblib/dblib_stmt.c:1.6.2.2.2.4 --- php-src/ext/pdo_dblib/dblib_stmt.c:1.6.2.2.2.3 Sun Jan 14 16:57:50 2007 +++ php-src/ext/pdo_dblib/dblib_stmt.c Mon Jan 15 01:56:09 2007 @@ -17,7 +17,7 @@ +----------------------------------------------------------------------+ */ -/* $Id: dblib_stmt.c,v 1.6.2.2.2.3 2007/01/14 16:57:50 iliaa Exp $ */ +/* $Id: dblib_stmt.c,v 1.6.2.2.2.4 2007/01/15 01:56:09 fmk Exp $ */ #ifdef HAVE_CONFIG_H # include "config.h" @@ -250,9 +250,9 @@ 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 @@ NULL, /* get attr */ NULL, /* meta */ NULL, /* nextrow */ - dblib_mysql_stmt_cursor_closer + dblib_dblib_stmt_cursor_closer };
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php