diff options
author | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-22 15:50:09 +0400 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@rambler-co.ru> | 2011-07-22 15:50:09 +0400 |
commit | 970e7e3b52db9b05112651a19c6dd5789003f437 (patch) | |
tree | aafd0ab45450591f1594c08a89ce9f6d8bfc4a35 /src/controller.c | |
parent | c19dad7e86de3bc0fcd3c1789d13e8d140414bf7 (diff) | |
download | rspamd-970e7e3b52db9b05112651a19c6dd5789003f437.tar.gz rspamd-970e7e3b52db9b05112651a19c6dd5789003f437.zip |
Increase buffer for output.
Diffstat (limited to 'src/controller.c')
-rw-r--r-- | src/controller.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controller.c b/src/controller.c index 8c9da3bb9..4cf80342e 100644 --- a/src/controller.c +++ b/src/controller.c @@ -1088,7 +1088,7 @@ controller_write_socket (void *arg) { struct controller_session *session = (struct controller_session *)arg; gint i; - gchar out_buf[64]; + gchar out_buf[1024]; GError *err = NULL; if (session->state == STATE_QUIT) { |