From: Jim Meyering Date: Sat, 10 May 2003 14:59:04 +0000 (+0000) Subject: Handle argc < optind. X-Git-Tag: v5.0.1~540 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=9b652d07908093aa22a975843525d2f5abc79161;p=thirdparty%2Fcoreutils.git Handle argc < optind. --- diff --git a/src/chroot.c b/src/chroot.c index cbec705c2d..421e5212de 100644 --- a/src/chroot.c +++ b/src/chroot.c @@ -1,5 +1,5 @@ /* chroot -- run command or shell with special root directory - Copyright (C) 95, 96, 1997, 1999-2002 Free Software Foundation, Inc. + Copyright (C) 95, 96, 1997, 1999-2003 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -73,7 +73,7 @@ main (int argc, char **argv) parse_long_options (argc, argv, PROGRAM_NAME, GNU_PACKAGE, VERSION, AUTHORS, usage); - if (argc == 1) + if (argc <= 1) { error (0, 0, _("too few arguments")); usage (EXIT_FAILURE);