diff options
| author | Frank M. Kromann <fmk@php.net> | 2004-12-29 20:18:34 +0000 |
|---|---|---|
| committer | Frank M. Kromann <fmk@php.net> | 2004-12-29 20:18:34 +0000 |
| commit | 70c51c4ee6804fd11e3b348b1f29f79087e8998c (patch) | |
| tree | ce7d323cdb674c06360355f55bbf9810ac682401 /ext/fbsql/php_fbsql.c | |
| parent | 6528b1b0b477ba87920aff43f176717c70cf27d6 (diff) | |
| download | php-git-70c51c4ee6804fd11e3b348b1f29f79087e8998c.tar.gz | |
Fix typo
Diffstat (limited to 'ext/fbsql/php_fbsql.c')
| -rw-r--r-- | ext/fbsql/php_fbsql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/fbsql/php_fbsql.c b/ext/fbsql/php_fbsql.c index b6832d8eac..e13f9e4dfc 100644 --- a/ext/fbsql/php_fbsql.c +++ b/ext/fbsql/php_fbsql.c @@ -849,7 +849,7 @@ PHP_FUNCTION(fbsql_set_transaction) php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid locking type."); RETURN_FALSE; } - if (Z_LVAL_PP(strIsolation) < 0 || Z_LVAL_PP(Isolation) > 4) { + if (Z_LVAL_PP(Isolation) < 0 || Z_LVAL_PP(Isolation) > 4) { php_error_docref(NULL TSRMLS_CC, E_WARNING, "Invalid isolation type."); RETURN_FALSE; } |
