Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/external/gpl2/xcvs/dist/src Pull up following revision(s)...



details:   https://anonhg.NetBSD.org/src/rev/8d262f98f739
branches:  netbsd-6
changeset: 776697:8d262f98f739
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Tue Sep 09 08:28:32 2014 +0000

description:
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.

diffstat:

 external/gpl2/xcvs/dist/src/server.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (21 lines):

diff -r f811317aa365 -r 8d262f98f739 external/gpl2/xcvs/dist/src/server.c
--- a/external/gpl2/xcvs/dist/src/server.c      Tue Sep 09 08:24:29 2014 +0000
+++ b/external/gpl2/xcvs/dist/src/server.c      Tue Sep 09 08:28:32 2014 +0000
@@ -1130,7 +1130,7 @@
     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 @@
 
     if (error_pending()) return;
 
-    if (argument_count >= 10000)
+    if (argument_count >= 1000000)
     {
        if (alloc_pending (80))
            sprintf (pending_error_text, 



Home | Main Index | Thread Index | Old Index