summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2009-11-01 21:12:57 -0500
committerJohn Wiegley <johnw@newartisans.com>2009-11-01 21:12:57 -0500
commit48f024a42aa02f36220cf5e06ed005c65cc3fa76 (patch)
tree3ad493febcf5a54a99a4906c371540e6458a1e4b /src
parenta048afc8a34d3a1c1a6372ef6b7cc373779bcac0 (diff)
downloadfork-ledger-48f024a42aa02f36220cf5e06ed005c65cc3fa76.tar.gz
fork-ledger-48f024a42aa02f36220cf5e06ed005c65cc3fa76.tar.bz2
fork-ledger-48f024a42aa02f36220cf5e06ed005c65cc3fa76.zip
Increased size of buffer used to split account names
Diffstat (limited to 'src')
-rw-r--r--src/account.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/account.cc b/src/account.cc
index 52a6b436..31d86bd2 100644
--- a/src/account.cc
+++ b/src/account.cc
@@ -55,7 +55,7 @@ account_t * account_t::find_account(const string& name,
if (i != accounts.end())
return (*i).second;
- char buf[256];
+ char buf[8192];
string::size_type sep = name.find(':');
assert(sep < 256|| sep == string::npos);