From 48f024a42aa02f36220cf5e06ed005c65cc3fa76 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 1 Nov 2009 21:12:57 -0500 Subject: Increased size of buffer used to split account names --- src/account.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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); -- cgit v1.2.3