summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/oci8/oci8.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c
index 8f77125179..c5a6011f17 100644
--- a/ext/oci8/oci8.c
+++ b/ext/oci8/oci8.c
@@ -12,7 +12,7 @@
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
- | Authors: Stig Sæther Bakken <ssb@php.net> |
+ | Authors: Stig Sæther Bakken <ssb@fast.no> |
| Thies C. Arntzen <thies@thieso.net> |
| Maxim Maletsky <maxim@maxim.cx> |
| |
@@ -2349,7 +2349,7 @@ static oci_session *_oci_open_session(oci_server* server,char *username,char *pa
return psession;
- CLEANUP:
+CLEANUP:
oci_debug("_oci_open_session: FAILURE -> CLEANUP called");
_oci_close_session(session);
@@ -2526,7 +2526,7 @@ static oci_server *_oci_open_server(char *dbname,int persistent)
return pserver;
- CLEANUP:
+CLEANUP:
oci_debug("_oci_open_server: FAILURE -> CLEANUP called");
_oci_close_server(server);
@@ -2769,7 +2769,7 @@ static void oci_do_connect(INTERNAL_FUNCTION_PARAMETERS,int persistent,int exclu
RETURN_RESOURCE(connection->id);
- CLEANUP:
+CLEANUP:
oci_debug("oci_do_connect: FAILURE -> CLEANUP called");
if (connection->id) {
@@ -3415,7 +3415,7 @@ PHP_FUNCTION(ociwritelobtofile)
RETURN_TRUE;
}
- bail:
+bail:
if (fp != -1) {
close(fp);
}