diff options
author | John Wiegley <johnw@newartisans.com> | 2005-01-14 23:44:08 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:40:50 -0400 |
commit | 79f9a1efb5ef04703e7491a80583aa9dcc293ff1 (patch) | |
tree | ee423242ad786de035b35b5707a45c77ccd77d4d /config.cc | |
parent | 3a8729420e188c0b75025c950faa1197bf1cbfca (diff) | |
download | fork-ledger-79f9a1efb5ef04703e7491a80583aa9dcc293ff1.tar.gz fork-ledger-79f9a1efb5ef04703e7491a80583aa9dcc293ff1.tar.bz2 fork-ledger-79f9a1efb5ef04703e7491a80583aa9dcc293ff1.zip |
Set cache_file to "<none>" if --no-cache is used.
Diffstat (limited to 'config.cc')
-rw-r--r-- | config.cc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -586,7 +586,7 @@ OPT_BEGIN(cache, ":") { } OPT_END(cache); OPT_BEGIN(no_cache, "") { - config.cache_file = ""; + config.cache_file = "<none>"; } OPT_END(no_cache); OPT_BEGIN(output, "o:") { |