diff options
author | John Wiegley <johnw@newartisans.com> | 2011-06-30 09:25:58 -0500 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2011-06-30 09:25:58 -0500 |
commit | a5f2c25f472ac2c495263f31a3f3ae38fabdd797 (patch) | |
tree | fc20858f1e6cd1c0c381b8a40d0172d813097bee /src/filters.cc | |
parent | ee7f5395e68f090a449f2ccbcaade3238df1d679 (diff) | |
download | fork-ledger-a5f2c25f472ac2c495263f31a3f3ae38fabdd797.tar.gz fork-ledger-a5f2c25f472ac2c495263f31a3f3ae38fabdd797.tar.bz2 fork-ledger-a5f2c25f472ac2c495263f31a3f3ae38fabdd797.zip |
Whitespace fix
Diffstat (limited to 'src/filters.cc')
-rw-r--r-- | src/filters.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/filters.cc b/src/filters.cc index a39fc951..ffb7c0c0 100644 --- a/src/filters.cc +++ b/src/filters.cc @@ -1381,9 +1381,9 @@ inject_posts::inject_posts(post_handler_ptr handler, for (char * q = std::strtok(buf.get(), ","); q; q = std::strtok(NULL, ",")) { - std::list<string> account_names; split_string(q, ':', account_names); + account_t * account = create_temp_account_from_path(account_names, temps, master); account->add_flags(ACCOUNT_GENERATED); |