Module Name: src Committed By: msaitoh Date: Tue Sep 9 08:28:32 UTC 2014
Modified Files: src/external/gpl2/xcvs/dist/src [netbsd-6]: server.c Log Message: Pull up following revision(s) (requested by tls in ticket #1108): external/gpl2/xcvs/dist/src/server.c: revision 1.6 Relax arbitrary limit of 10,000 changed files per commit idiotically introduced in CVS 1.11.17. To generate a diff of this commit: cvs rdiff -u -r1.3.10.1 -r1.3.10.2 src/external/gpl2/xcvs/dist/src/server.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/external/gpl2/xcvs/dist/src/server.c diff -u src/external/gpl2/xcvs/dist/src/server.c:1.3.10.1 src/external/gpl2/xcvs/dist/src/server.c:1.3.10.2 --- src/external/gpl2/xcvs/dist/src/server.c:1.3.10.1 Mon Jun 3 02:45:24 2013 +++ src/external/gpl2/xcvs/dist/src/server.c Tue Sep 9 08:28:32 2014 @@ -1130,7 +1130,7 @@ serve_max_dotdot (char *arg) if (proxy_log) return; #endif /* PROXY_SUPPORT */ - if (lim < 0 || lim > 10000) + if (lim < 0 || lim > 1000000) return; p = xmalloc (strlen (server_temp_dir) + 2 * lim + 10); if (p == NULL) @@ -2989,7 +2989,7 @@ serve_argument (char *arg) if (error_pending()) return; - if (argument_count >= 10000) + if (argument_count >= 1000000) { if (alloc_pending (80)) sprintf (pending_error_text,