From b381deddab10131394d1cc78fd8cc4ce73caff5e Mon Sep 17 00:00:00 2001 From: Jon Watson Date: Wed, 20 Mar 2013 11:51:15 -0700 Subject: [PATCH] Update dblib_driver.c Bugfix for issue 63638. The patch from 1 to NULL is reverted with this commit. --- ext/pdo_dblib/dblib_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/pdo_dblib/dblib_driver.c b/ext/pdo_dblib/dblib_driver.c index ffc910177fdd3..2316175bd2ee1 100644 --- a/ext/pdo_dblib/dblib_driver.c +++ b/ext/pdo_dblib/dblib_driver.c @@ -315,7 +315,7 @@ static int pdo_dblib_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_ DBSETOPT(H->link, DBTEXTSIZE, "2147483647"); /* allow double quoted indentifiers */ - DBSETOPT(H->link, DBQUOTEDIDENT, NULL); + DBSETOPT(H->link, DBQUOTEDIDENT, 1); if (vars[3].optval && FAIL == dbuse(H->link, vars[3].optval)) { goto cleanup;