From: Glenn L McGrath Date: Mon, 18 Sep 2000 09:52:03 +0000 (-0000) Subject: Path count was out by one, fixed it X-Git-Tag: 0_47~62 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=38c8551cf23b1740c7573e14466993af3f3cb775;p=oweals%2Fbusybox.git Path count was out by one, fixed it --- diff --git a/findutils/which.c b/findutils/which.c index dc162dca5..7df2557a3 100644 --- a/findutils/which.c +++ b/findutils/which.c @@ -28,7 +28,7 @@ extern int which_main(int argc, char **argv) { char *path_list, *path_n; struct stat filestat; - int i, count=0; + int i, count=1; if (argc <= 1 || **(argv + 1) == '-') usage(which_usage); diff --git a/which.c b/which.c index dc162dca5..7df2557a3 100644 --- a/which.c +++ b/which.c @@ -28,7 +28,7 @@ extern int which_main(int argc, char **argv) { char *path_list, *path_n; struct stat filestat; - int i, count=0; + int i, count=1; if (argc <= 1 || **(argv + 1) == '-') usage(which_usage);