summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Packard <keithp@evo.keithp.com>2006-02-20 11:39:13 -0800
committerKeith Packard <keithp@evo.keithp.com>2006-02-20 11:39:13 -0800
commit2eca8062c9f88098a08a1a69c8cd5251c439fb7f (patch)
treeae9b397310d6bb3d486badada7aa683f9dad4982
parentcd83b8130e6d3a05135e959859cfc3f180d1ea69 (diff)
Increase line buffer size reading from CVS. Yes, this a kludge
-rw-r--r--cvs_direct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cvs_direct.c b/cvs_direct.c
index 920487d..c660035 100644
--- a/cvs_direct.c
+++ b/cvs_direct.c
@@ -699,7 +699,7 @@ static int read_response(CvsServerCtx * ctx, const char * str)
static void ctx_to_fp(CvsServerCtx * ctx, FILE * fp)
{
- char line[BUFSIZ];
+ char line[BUFSIZ * 16];
while (1)
{