]> granicus.if.org Git - php/commitdiff
Coding style.
authorMarc Boeren <mboeren@php.net>
Wed, 30 Oct 2002 15:03:01 +0000 (15:03 +0000)
committerMarc Boeren <mboeren@php.net>
Wed, 30 Oct 2002 15:03:01 +0000 (15:03 +0000)
# not my style :-)

ext/dbx/dbx_fbsql.c
ext/dbx/dbx_mssql.c
ext/dbx/dbx_mysql.c
ext/dbx/dbx_oci8.c
ext/dbx/dbx_odbc.c
ext/dbx/dbx_pgsql.c
ext/dbx/dbx_sybasect.c

index f12ed0870d36e1b51377f0226b12d59ba88065d2..39db7e89a8a055ef88ed90586acb80295b30c4c5 100644 (file)
@@ -262,7 +262,7 @@ int dbx_fbsql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */
index 69ae42ba1967230d3211420ccfb054d06ffac77a..a4c5e76018bdd9933391166b9541601f8db10d1e 100644 (file)
@@ -261,7 +261,7 @@ int dbx_mssql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */
index b8149eae9d2efc0d691847a6d7f6eaef283c6ec0..7dcaac2a8a7e1a330c10f10b387cefe91e05c553 100644 (file)
@@ -269,7 +269,7 @@ int dbx_mysql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        arguments[0]=string;
        arguments[1]=dbx_handle;
        dbx_call_any_function(INTERNAL_FUNCTION_PARAM_PASSTHRU, "mysql_real_escape_string", &returned_zval, number_of_arguments, arguments);
index 1f0a937d943bf59d31ccdb120f60e63f834851f2..19cd2c1ee7e980ad1a0e8350379b0c07977ee306 100644 (file)
@@ -280,7 +280,7 @@ int dbx_oci8_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION_
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */
index ef3d5752099acb57a1d7607c9a0032555d6f26a4..c007d0165868314fe7b2e5644a3d658688785346 100644 (file)
@@ -284,7 +284,7 @@ int dbx_odbc_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION_
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */
index 7642ee64881e280816a38058b368b0529b917c0a..cfc75285487d77ef56b13b897a412abe29b77f8d 100644 (file)
@@ -288,7 +288,7 @@ int dbx_pgsql_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCTION
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */
index b5da1056513504f5237a932db142016b185652e9..ea3263f5a78323cb6015fcc7b5a1ce95fc0f0838 100644 (file)
@@ -286,7 +286,7 @@ int dbx_sybasect_esc(zval **rv, zval **dbx_handle, zval **string, INTERNAL_FUNCT
        if (Z_STRLEN_PP(string) == 0) {
                ZVAL_EMPTY_STRING(*rv);
                return 1;
-               }
+       }
        tmpstr = estrdup(Z_STRVAL_PP(string));
        tmplen = Z_STRLEN_PP(string);
        /* php_str_to_str uses a smart_str that allocates memory */