summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2005-04-01 09:52:40 +0000
committerJoris Vink <joris@cvs.openbsd.org>2005-04-01 09:52:40 +0000
commit574cca055e0de1181d2d1e022f01dad4c8f1ca7a (patch)
tree5bc007bf9784ae0e7d02c712cf321c6b3535029c
parentf746d21fca992d0aefc5934cfba5b37e816cca5e (diff)
crank up buffersize to get rid of truncated requests.
-rw-r--r--usr.bin/cvs/server.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/cvs/server.c b/usr.bin/cvs/server.c
index bf553733af7..6ef6659d143 100644
--- a/usr.bin/cvs/server.c
+++ b/usr.bin/cvs/server.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: server.c,v 1.8 2005/03/31 17:18:24 joris Exp $ */
+/* $OpenBSD: server.c,v 1.9 2005/04/01 09:52:39 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -63,7 +63,7 @@ int
cvs_server(int argc, char **argv)
{
size_t len;
- char reqbuf[128];
+ char reqbuf[512];
if (argc != 1) {
return (EX_USAGE);