diff options
author | John Wiegley <johnw@newartisans.com> | 2009-02-07 21:55:51 -0400 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2009-02-07 21:55:51 -0400 |
commit | 71591555fd4069075e02a25c6403f300d9ecd59d (patch) | |
tree | 18f0339b9837fd559934f1dc3f51da7ec2d2b5e3 /src/session.cc | |
parent | 591ebbf1bd7fefc76e28a86efce5339034a1dbd5 (diff) | |
download | fork-ledger-71591555fd4069075e02a25c6403f300d9ecd59d.tar.gz fork-ledger-71591555fd4069075e02a25c6403f300d9ecd59d.tar.bz2 fork-ledger-71591555fd4069075e02a25c6403f300d9ecd59d.zip |
Added --leeway option (for quote downloading) into session_t.
Diffstat (limited to 'src/session.cc')
-rw-r--r-- | src/session.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/session.cc b/src/session.cc index a1ff4892..fad51da3 100644 --- a/src/session.cc +++ b/src/session.cc @@ -182,6 +182,9 @@ option_t<session_t> * session_t::lookup_option(const char * p) case 'i': OPT(input_date_format_); break; + case 'l': + OPT(leeway_); + break; case 'p': OPT(price_db_); break; |