Commit 7711273c authored by Stefan Krah's avatar Stefan Krah

Use bitwise instead of logical or for flags.

parent ed36c06f
...@@ -8795,7 +8795,7 @@ static PyMethodDef DBEnv_methods[] = { ...@@ -8795,7 +8795,7 @@ static PyMethodDef DBEnv_methods[] = {
{"txn_recover", (PyCFunction)DBEnv_txn_recover, METH_NOARGS}, {"txn_recover", (PyCFunction)DBEnv_txn_recover, METH_NOARGS},
#if (DBVER < 48) #if (DBVER < 48)
{"set_rpc_server", (PyCFunction)DBEnv_set_rpc_server, {"set_rpc_server", (PyCFunction)DBEnv_set_rpc_server,
METH_VARARGS||METH_KEYWORDS}, METH_VARARGS|METH_KEYWORDS},
#endif #endif
#if (DBVER >= 43) #if (DBVER >= 43)
{"set_mp_max_openfd", (PyCFunction)DBEnv_set_mp_max_openfd, METH_VARARGS}, {"set_mp_max_openfd", (PyCFunction)DBEnv_set_mp_max_openfd, METH_VARARGS},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment