diff options
author | foobar <sniper@php.net> | 2005-12-05 22:41:10 +0000 |
---|---|---|
committer | foobar <sniper@php.net> | 2005-12-05 22:41:10 +0000 |
commit | f58f7f4e6745fc654ba2b2f42457a529ff3e6747 (patch) | |
tree | 754ef22fed2748d169df79cbe8924809d0f2b1c8 /ext/pdo | |
parent | 66832decc538887f2915c4f9dab0add98e621691 (diff) | |
download | php-git-f58f7f4e6745fc654ba2b2f42457a529ff3e6747.tar.gz |
MFH: fix typo
Diffstat (limited to 'ext/pdo')
-rwxr-xr-x | ext/pdo/pdo_dbh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 58d1585f9a..806b434d60 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; - zend_list_entry *le; + zend_rsrc_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) { - zend_list_entry le; + zend_rsrc_list_entry le; /* register in the persistent list etc. */ /* we should also need to replace the object store entry, |