Increased size of buffer used to split account names

This commit is contained in:
John Wiegley 2009-11-01 21:12:57 -05:00
parent a048afc8a3
commit 48f024a42a

View file

@ -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);