# HG changeset patch # User Rob Flynn # Date 958067584 0 # Node ID 226935a5dd1be6fb4ff6de1f6207a9e2be9d7df3 # Parent 5afbb3468f110dc1f8aff7c55492a788c233a609 [gaim-migrate @ 241] Import/export wouldnt od more than a 1023byte buddy list. Eep :) diff -r 5afbb3468f11 -r 226935a5dd1b src/dialogs.c --- a/src/dialogs.c Wed May 10 10:56:25 2000 +0000 +++ b/src/dialogs.c Thu May 11 17:53:04 2000 +0000 @@ -2056,7 +2056,7 @@ return; } if ((f = fopen(path,"w"))) { - toc_build_config(buf, 1024 - 1); + toc_build_config(buf, 8192 - 1); fprintf(f, "%s\n", buf); fclose(f); chmod(buf, S_IRUSR | S_IWUSR); @@ -2155,8 +2155,8 @@ return; } else if (buf[0] == 'm') { buf2 = buf; - buf = g_malloc(1025); - g_snprintf(buf, 1024, "toc_set_config {%s}\n", buf2); + buf = g_malloc(8193); + g_snprintf(buf, 8192, "toc_set_config {%s}\n", buf2); g_free(buf2); }