Commit 1b8efeee authored by Rich Prohaska's avatar Rich Prohaska

addresses #77

git-svn-id: file:///svn/tokudb@1414 c7de825b-a66e-492c-adef-691d508d4ae1
parent 172092ef
...@@ -422,9 +422,10 @@ static void toku_db_env_set_errpfx(DB_ENV * env, const char *errpfx) { ...@@ -422,9 +422,10 @@ static void toku_db_env_set_errpfx(DB_ENV * env, const char *errpfx) {
} }
static int toku_db_env_set_flags(DB_ENV * env, u_int32_t flags, int onoff) { static int toku_db_env_set_flags(DB_ENV * env, u_int32_t flags, int onoff) {
env=env;flags=flags;onoff=onoff; env=env;
assert(flags == 0); if (flags != 0 && onoff)
return 1; return EINVAL; /* no flags are currently supported */
return 0;
} }
static int toku_db_env_set_lg_bsize(DB_ENV * env, u_int32_t bsize) { static int toku_db_env_set_lg_bsize(DB_ENV * env, u_int32_t bsize) {
......
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