From 0d29b1ef72cc30132ee16b5e448dcd4fe7087e7b Mon Sep 17 00:00:00 2001 From: Dan Kalowsky Date: Fri, 24 Jan 2003 22:49:22 +0000 Subject: [PATCH] busted by the style police... --- ext/odbc/php_odbc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/odbc/php_odbc.c b/ext/odbc/php_odbc.c index 9fecc74fe2..0b35f977d8 100644 --- a/ext/odbc/php_odbc.c +++ b/ext/odbc/php_odbc.c @@ -2925,7 +2925,9 @@ PHP_FUNCTION(odbc_columns) /* * Needed to make MS Access happy */ - if (table && strlen(table) && schema && !strlen(schema)) schema = NULL; + if (table && strlen(table) && schema && !strlen(schema)) { + schema = NULL; + } rc = SQLColumns(result->stmt, cat, cat_len, -- 2.50.1