diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2004-05-18 22:45:53 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2004-05-18 22:45:53 +0000 |
commit | aecad9e37b4adf069c8112c5472f614fefa19bef (patch) | |
tree | 2923d950b336cbc916386f07fa0bc8b1cb0a9ff1 | |
parent | cb1239a338f589545df748675ac07ede6a413b0d (diff) | |
download | php-git-aecad9e37b4adf069c8112c5472f614fefa19bef.tar.gz |
Fixed build.
-rwxr-xr-x | ext/pdo/pdo_stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 69ecfc03c2..e72c7e541b 100755 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -534,7 +534,7 @@ static zval *dbstmt_prop_read(zval *object, zval *member, int type TSRMLS_DC) convert_to_string(member); - if(strcmp(Z_STRVAL_P(member), "queryString")) == 0) { + if(strcmp(Z_STRVAL_P(member), "queryString") == 0) { MAKE_STD_ZVAL(return_value); ZVAL_STRINGL(return_value, stmt->query_string, stmt->query_stringlen, 1); } |