Browse Source

Update to match new prototype

PHP-5.0
Wez Furlong 22 years ago
parent
commit
5a9864ed2b
  1. 2
      ext/pdo_odbc/odbc_driver.c

2
ext/pdo_odbc/odbc_driver.c

@ -101,7 +101,7 @@ static int odbc_handle_doer(pdo_dbh_t *dbh, const char *sql TSRMLS_DC)
return 0;
}
static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, char **quoted, int *quotedlen TSRMLS_DC)
static int odbc_handle_quoter(pdo_dbh_t *dbh, const char *unquoted, int unquotedlen, char **quoted, int *quotedlen TSRMLS_DC)
{
pdo_odbc_db_handle *H = (pdo_odbc_db_handle *)dbh->driver_data;

Loading…
Cancel
Save