# HG changeset patch # User Eric Warmenhoven # Date 960414870 0 # Node ID 22161278657cad5908a45eafd74598d50a51f4f1 # Parent fd3cc0a28d5da88d54761217382780ba80215602 [gaim-migrate @ 361] Hopefully this will fix the Buffer too small problem people seem to be having committer: Tailor Script diff -r fd3cc0a28d5d -r 22161278657c src/toc.c --- a/src/toc.c Wed Jun 07 18:33:21 2000 +0000 +++ b/src/toc.c Wed Jun 07 21:54:30 2000 +0000 @@ -758,7 +758,7 @@ int toc_wait_signon() { /* Wait for the SIGNON to be approved */ - char buf[BUF_LEN]; + char buf[BUF_LONG]; int res; res = wait_reply(buf, sizeof(buf)); if (res < 0) @@ -800,7 +800,7 @@ char *toc_wait_config() { /* Waits for configuration packet, returning the contents of the packet */ - static char buf[BUF_LEN]; + static char buf[BUF_LONG]; int res; res = wait_reply(buf, sizeof(buf)); if (res < 0)