Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Kraai <kraai@debian.org>2000-11-18 04:16:43 +0300
committerMatt Kraai <kraai@debian.org>2000-11-18 04:16:43 +0300
commit768a2340b557f01738bf5944463a6fc4d70f0b21 (patch)
tree1cedde1670a2b5b71523e8954f72e18c01b80bac
parente93abf9e6997f333c5add8f11b1542bbc2ccc844 (diff)
Fixed return status (thanks to David Douthitt for the fix).
-rw-r--r--findutils/which.c8
-rw-r--r--which.c8
2 files changed, 12 insertions, 4 deletions
diff --git a/findutils/which.c b/findutils/which.c
index da8801fab..a92777eb7 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=1;
+ int i, count=1, found, status = EXIT_SUCCESS;
if (argc <= 1 || **(argv + 1) == '-')
usage(which_usage);
@@ -48,6 +48,7 @@ extern int which_main(int argc, char **argv)
while(argc-- > 0) {
path_n = path_list;
argv++;
+ found = 0;
for (i = 0; i < count; i++) {
char buf[strlen(path_n)+1+strlen(*argv)];
strcpy (buf, path_n);
@@ -57,12 +58,15 @@ extern int which_main(int argc, char **argv)
&& filestat.st_mode & S_IXUSR)
{
printf ("%s\n", buf);
+ found = 1;
break;
}
path_n += (strlen(path_n) + 1);
}
+ if (!found)
+ status = EXIT_FAILURE;
}
- return(TRUE);
+ return status;
}
/*
diff --git a/which.c b/which.c
index da8801fab..a92777eb7 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=1;
+ int i, count=1, found, status = EXIT_SUCCESS;
if (argc <= 1 || **(argv + 1) == '-')
usage(which_usage);
@@ -48,6 +48,7 @@ extern int which_main(int argc, char **argv)
while(argc-- > 0) {
path_n = path_list;
argv++;
+ found = 0;
for (i = 0; i < count; i++) {
char buf[strlen(path_n)+1+strlen(*argv)];
strcpy (buf, path_n);
@@ -57,12 +58,15 @@ extern int which_main(int argc, char **argv)
&& filestat.st_mode & S_IXUSR)
{
printf ("%s\n", buf);
+ found = 1;
break;
}
path_n += (strlen(path_n) + 1);
}
+ if (!found)
+ status = EXIT_FAILURE;
}
- return(TRUE);
+ return status;
}
/*