projects
/
m6w6
/
ext-pq
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
|
github
raw
|
patch
| inline |
side by side
(parent:
66a1a0a
)
fix bitmask
author
Michael Wallner
<mike@php.net>
Tue, 16 Sep 2014 18:13:29 +0000
(20:13 +0200)
committer
Michael Wallner
<mike@php.net>
Tue, 16 Sep 2014 18:13:29 +0000
(20:13 +0200)
src/php_pqconn.c
patch
|
blob
|
history
diff --git
a/src/php_pqconn.c
b/src/php_pqconn.c
index dedd1f4c4a41701e59ce6ed05a820dbd9eeb7a8f..3b920e77aeba9ec17e8cd50b67cc62e418cb71f5 100644
(file)
--- a/
src/php_pqconn.c
+++ b/
src/php_pqconn.c
@@
-372,7
+372,7
@@
static void php_pqconn_object_write_def_fetch_type(zval *object, void *o, zval *
}
}
- obj->intern->default_fetch_type = Z_LVAL_P(zft) & 0x
2
; /* two bits only */
+ obj->intern->default_fetch_type = Z_LVAL_P(zft) & 0x
3
; /* two bits only */
if (zft != value) {
zval_ptr_dtor(&zft);
@@
-402,7
+402,7
@@
static void php_pqconn_object_write_def_txn_isolation(zval *object, void *o, zva
}
}
- obj->intern->default_txn_isolation = Z_LVAL_P(zti) & 0x
2
; /* two bits only */
+ obj->intern->default_txn_isolation = Z_LVAL_P(zti) & 0x
3
; /* two bits only */
if (zti != value) {
zval_ptr_dtor(&zti);