On Sat, 20 Nov 2004 23:07:49 -0800
Andi Gutmans <[EMAIL PROTECTED]> wrote:
> Weird. Did you look via web interface or CVS?
> When check with cvs update -A and cvs update -r PHP_5_0 I do get the
> result as seen by the CVS commit message (HEAD is changed, PHP_5_0
> isn't). Any chance you are doing something wrong? :)
# cvs -d :pserver:[EMAIL PROTECTED]:/repository co -r HEAD
php-src/ext/oci8/oci8.c
U php-src/ext/oci8/oci8.c
# cat php-src/ext/oci8/oci8.c | grep pcleanup
static int _sessions_pcleanup(zend_llist *session_list)
static int _session_pcleanup(oci_session *session)
static int _server_pcleanup(oci_server *server)
zend_ts_hash_init(persistent_servers, 13, NULL, (dtor_func_t)
_server_pcleanup, 1);
zend_ts_hash_init(persistent_sessions, 13, NULL, (dtor_func_t)
_sessions_pcleanup, 1);
zend_llist_init(&tmp, sizeof(oci_session),
(llist_dtor_func_t) _session_pcleanup, 1);
and in the same time:
# cvs -d :pserver:[EMAIL PROTECTED]:/repository co -r PHP_5_0
php-src/ext/oci8/oci8.c
U php-src/ext/oci8/oci8.c
# cat php-src/ext/oci8/oci8.c | grep pcleanup
static int _sessions_pcleanup(zend_llist *session_list TSRMLS_DC)
static int _session_pcleanup(oci_session *session TSRMLS_DC)
static int _server_pcleanup(oci_server *server TSRMLS_DC)
:/
--
Wbr,
Antony Dovgal aka tony2001
[EMAIL PROTECTED] || [EMAIL PROTECTED]
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php