diff options
author | Thies C. Arntzen <thies@php.net> | 2000-06-15 14:13:53 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-06-15 14:13:53 +0000 |
commit | bd06de9ae9a8e229139706e1a5f7f6c0403285ac (patch) | |
tree | 0c94268104af89fc1e11e53fcb9ee5009d09697b /ext/oracle/oracle.c | |
parent | cd40d5df9fd51ecaff77b88a4da1b5149683da5b (diff) | |
download | php-git-bd06de9ae9a8e229139706e1a5f7f6c0403285ac.tar.gz |
fixed typo
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 2c1890cc26..e47f019550 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -411,7 +411,7 @@ void ora_do_logon(INTERNAL_FUNCTION_PARAMETERS, int persistent) RETURN_FALSE; } if (ORA(max_persistent)!=-1 && ORA(num_persistent)>=ORA(max_persistent)) { - php_error(E_WARNING,"MySQL: Too many open persistent links (%d)",ORA(num_persistent)); + php_error(E_WARNING,"Oracle: Too many open persistent links (%d)",ORA(num_persistent)); efree(hashed_details); RETURN_FALSE; } @@ -479,8 +479,8 @@ void ora_do_logon(INTERNAL_FUNCTION_PARAMETERS, int persistent) list_entry *index_ptr,new_index_ptr; /* first we check the hash for the hashed_details key. if it exists, - * it should point us to the right offset where the actual mysql link sits. - * if it doesn't, open a new mysql link, add it to the resource list, + * it should point us to the right offset where the actual Oracle link sits. + * if it doesn't, open a new Oracle link, add it to the resource list, * and add a pointer to it with hashed_details as the key. */ if (zend_hash_find(&EG(regular_list),hashed_details,hashed_details_length+1,(void **) &index_ptr)==SUCCESS) { |