From b69f818a0e24a2e6467fb1291ff5d665ff39d7c4 Mon Sep 17 00:00:00 2001 From: jay Date: Sun, 8 Aug 2004 11:20:39 +0000 Subject: [PATCH] Don't check size_of_environment against arg_max since that causes the test suite to fail. --- xargs/xargs.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/xargs/xargs.c b/xargs/xargs.c index 44a7b0e..3780d3f 100644 --- a/xargs/xargs.c +++ b/xargs/xargs.c @@ -434,12 +434,7 @@ main (int argc, char **argv) { arg_max = arg_size; } - if (size_of_environment > arg_max) - { - error (1, 0, _("environment is too large for max-chars size, try using the -s option")); - } - linebuf = (char *) xmalloc (arg_max + 1); argbuf = (char *) xmalloc (arg_max + 1); -- 2.11.4.GIT