summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-12-05 22:38:17 +0000
committerfoobar <sniper@php.net>2005-12-05 22:38:17 +0000
commit130333274b3daf0b763541a47d1b194d67e64c3c (patch)
treedf06efa2203e9ccb651c587ca97615af2c18908b
parentc297b31a52e1fcf1e8df6b95c1275e911a09d341 (diff)
downloadphp-git-130333274b3daf0b763541a47d1b194d67e64c3c.tar.gz
- Do not use the PHP3 era names!
-rwxr-xr-xext/pdo/pdo_dbh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c
index 96a6047d6c..2230d08a03 100755
--- a/ext/pdo/pdo_dbh.c
+++ b/ext/pdo/pdo_dbh.c
@@ -283,7 +283,7 @@ static PHP_METHOD(PDO, dbh_constructor)
zval **v;
int plen;
char *hashkey = NULL;
- list_entry *le;
+ zend_list_entry *le;
pdo_dbh_t *pdbh = NULL;
if (SUCCESS == zend_hash_index_find(Z_ARRVAL_P(options), PDO_ATTR_PERSISTENT, (void**)&v)) {
@@ -377,7 +377,7 @@ static PHP_METHOD(PDO, dbh_constructor)
/* all set */
if (is_persistent) {
- list_entry le;
+ zend_list_entry le;
/* register in the persistent list etc. */
/* we should also need to replace the object store entry,