Remove unneeded patch after upgrade to 4.0.6.
This commit is contained in:
parent
8439522453
commit
b5aa4bedfe
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=44399
2 changed files with 0 additions and 58 deletions
|
@ -1,29 +0,0 @@
|
|||
--- ext/sybase/php_sybase_db.c.orig Fri Jun 2 14:14:44 2000
|
||||
+++ ext/sybase/php_sybase_db.c Fri Jun 2 14:15:27 2000
|
||||
@@ -357,7 +357,7 @@
|
||||
RETURN_FALSE;
|
||||
}
|
||||
/* create the link */
|
||||
- if ((sybase.link=dbopen(sybase.login,host))==FAIL) {
|
||||
+ if ((sybase.link=tdsdbopen(sybase.login,host))==FAIL) {
|
||||
/*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/
|
||||
efree(hashed_details);
|
||||
dbloginfree(sybase.login);
|
||||
@@ -393,7 +393,7 @@
|
||||
sybase_ptr = (sybase_link *) le->ptr;
|
||||
/* test that the link hasn't died */
|
||||
if (DBDEAD(sybase_ptr->link)==TRUE) {
|
||||
- if ((sybase_ptr->link=dbopen(sybase_ptr->login,host))==FAIL) {
|
||||
+ if ((sybase_ptr->link=tdsdbopen(sybase_ptr->login,host))==FAIL) {
|
||||
/*php_error(E_WARNING,"Sybase: Link to server lost, unable to reconnect");*/
|
||||
zend_hash_del(&EG(persistent_list), hashed_details, hashed_details_length+1);
|
||||
efree(hashed_details);
|
||||
@@ -440,7 +440,7 @@
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
- if ((sybase.link=dbopen(sybase.login,host))==NULL) {
|
||||
+ if ((sybase.link=tdsdbopen(sybase.login,host))==NULL) {
|
||||
/*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/
|
||||
efree(hashed_details);
|
||||
RETURN_FALSE;
|
|
@ -1,29 +0,0 @@
|
|||
--- ext/sybase/php_sybase_db.c.orig Fri Jun 2 14:14:44 2000
|
||||
+++ ext/sybase/php_sybase_db.c Fri Jun 2 14:15:27 2000
|
||||
@@ -357,7 +357,7 @@
|
||||
RETURN_FALSE;
|
||||
}
|
||||
/* create the link */
|
||||
- if ((sybase.link=dbopen(sybase.login,host))==FAIL) {
|
||||
+ if ((sybase.link=tdsdbopen(sybase.login,host))==FAIL) {
|
||||
/*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/
|
||||
efree(hashed_details);
|
||||
dbloginfree(sybase.login);
|
||||
@@ -393,7 +393,7 @@
|
||||
sybase_ptr = (sybase_link *) le->ptr;
|
||||
/* test that the link hasn't died */
|
||||
if (DBDEAD(sybase_ptr->link)==TRUE) {
|
||||
- if ((sybase_ptr->link=dbopen(sybase_ptr->login,host))==FAIL) {
|
||||
+ if ((sybase_ptr->link=tdsdbopen(sybase_ptr->login,host))==FAIL) {
|
||||
/*php_error(E_WARNING,"Sybase: Link to server lost, unable to reconnect");*/
|
||||
zend_hash_del(&EG(persistent_list), hashed_details, hashed_details_length+1);
|
||||
efree(hashed_details);
|
||||
@@ -440,7 +440,7 @@
|
||||
RETURN_FALSE;
|
||||
}
|
||||
|
||||
- if ((sybase.link=dbopen(sybase.login,host))==NULL) {
|
||||
+ if ((sybase.link=tdsdbopen(sybase.login,host))==NULL) {
|
||||
/*php_error(E_WARNING,"Sybase: Unable to connect to server: %s",sybase_error(sybase));*/
|
||||
efree(hashed_details);
|
||||
RETURN_FALSE;
|
Loading…
Reference in a new issue