diff options
Diffstat (limited to 'sql/init.cc')
-rw-r--r-- | sql/init.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sql/init.cc b/sql/init.cc index 4beb8db0c6f..e53eeab8902 100644 --- a/sql/init.cc +++ b/sql/init.cc @@ -39,12 +39,11 @@ void unireg_init(ulong options) #endif VOID(strmov(reg_ext,".frm")); - specialflag=SPECIAL_SAME_DB_NAME; + specialflag=SPECIAL_SAME_DB_NAME | options; /* Set options from argv */ /* Make a tab of powers of 10 */ for (i=0,nr=1.0; i < array_elements(log_10) ; i++) { /* It's used by filesort... */ log_10[i]= nr ; nr*= 10.0; } - specialflag|=options; /* Set options from argv */ DBUG_VOID_RETURN; } |