aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2015-01-25 13:11:58 -0600
committerRob Landley <rob@landley.net>2015-01-25 13:11:58 -0600
commitafd712aabc1b5bb6782489e01b8228b9021232f0 (patch)
treefc0aa4bd8697fb5221013ef7c7beb271726ce900
parentb5e72209c79b3e181673d469c8e064ae8b409836 (diff)
downloadtoybox-afd712aabc1b5bb6782489e01b8228b9021232f0.tar.gz
Cleanup mountpoint and remove it from the pending README.
-rw-r--r--toys/other/mountpoint.c24
-rw-r--r--toys/pending/README3
2 files changed, 14 insertions, 13 deletions
diff --git a/toys/other/mountpoint.c b/toys/other/mountpoint.c
index 266bea95..150865ca 100644
--- a/toys/other/mountpoint.c
+++ b/toys/other/mountpoint.c
@@ -19,31 +19,33 @@ config MOUNTPOINT
#define FOR_mountpoint
#include "toys.h"
+static void die(char *gripe)
+{
+ if (!(toys.optflags & FLAG_q)) printf("%s: not a %s\n", *toys.optargs, gripe);
+
+ toys.exitval++;
+ xexit();
+}
+
void mountpoint_main(void)
{
struct stat st1, st2;
char *arg = *toys.optargs;
int quiet = toys.optflags & FLAG_q;
- toys.exitval = 1;
- if (((toys.optflags & FLAG_x) ? lstat : stat)(arg, &st1))
- perror_exit("%s", arg);
+ if (lstat(arg, &st1)) perror_exit("%s", arg);
if (toys.optflags & FLAG_x) {
if (S_ISBLK(st1.st_mode)) {
if (!quiet) printf("%u:%u\n", major(st1.st_rdev), minor(st1.st_rdev));
- toys.exitval = 0;
+
return;
}
- if (!quiet) printf("%s: not a block device\n", arg);
- return;
+ die("block device");
}
- // Ignore the fact a file can be a mountpoint for --bind mounts.
- if (!S_ISDIR(st1.st_mode)) {
- if (!quiet) printf("%s: not a directory\n", arg);
- return;
- }
+ // TODO: Ignore the fact a file can be a mountpoint for --bind mounts.
+ if (!S_ISDIR(st1.st_mode)) die("directory");
arg = xmprintf("%s/..", arg);
xstat(arg, &st2);
diff --git a/toys/pending/README b/toys/pending/README
index f42f34b5..d90947a6 100644
--- a/toys/pending/README
+++ b/toys/pending/README
@@ -12,7 +12,6 @@ Library code awaiting cleanup lives in lib/pending.c
The following commands predate the pending directory, and are awaiting
cleanup but don't live here:
- vmstat, login, du, vconfig, mountpoint, chroot, cut, touch,
- modinfo, expand, xargs
+ vmstat, login, du, vconfig, chroot, cut, touch, modinfo, expand, xargs
lib/password.c