--explicit wasn't being handled correctly
This commit is contained in:
parent
3ed09fc85b
commit
c1ab9cad30
1 changed files with 3 additions and 1 deletions
|
|
@ -256,6 +256,9 @@ option_t<session_t> * session_t::lookup_option(const char * p)
|
|||
OPT(download); // -Q
|
||||
else OPT(decimal_comma);
|
||||
break;
|
||||
case 'e':
|
||||
OPT(explicit);
|
||||
break;
|
||||
case 'f':
|
||||
OPT_(file_); // -f
|
||||
break;
|
||||
|
|
@ -264,7 +267,6 @@ option_t<session_t> * session_t::lookup_option(const char * p)
|
|||
break;
|
||||
case 'l':
|
||||
OPT_ALT(price_exp_, leeway_);
|
||||
else OPT(explicit);
|
||||
break;
|
||||
case 'm':
|
||||
OPT(master_account_);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue