From afd712aabc1b5bb6782489e01b8228b9021232f0 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Sun, 25 Jan 2015 13:11:58 -0600 Subject: Cleanup mountpoint and remove it from the pending README. --- toys/other/mountpoint.c | 24 +++++++++++++----------- toys/pending/README | 3 +-- 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 -- cgit v1.2.3