X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=util-linux%2Ffdflush.c;h=f10cceae08054830b8659780ff2fab62b143cd66;hb=f1bbb22dca4d39aa227246f4c2ee90acd7e512a4;hp=6bc3e7d66cc05543f5dbd16c18c38c9ac440aa7f;hpb=bf181b9338152759fd56c8009e9a962a84808e7c;p=oweals%2Fbusybox.git diff --git a/util-linux/fdflush.c b/util-linux/fdflush.c index 6bc3e7d66..f10cceae0 100644 --- a/util-linux/fdflush.c +++ b/util-linux/fdflush.c @@ -21,36 +21,27 @@ * */ -#include "internal.h" +#include "busybox.h" #include #include #include +#include /* From */ #define FDFLUSH _IO(2,0x4b) extern int fdflush_main(int argc, char **argv) { - int value; int fd; if (argc <= 1 || **(++argv) == '-') - usage(fdflush_usage); + show_usage(); - fd = open(*argv, 0); - if (fd < 0) { - perror(*argv); - exit(FALSE); - } + if ((fd = open(*argv, 0)) < 0) + perror_msg_and_die("%s", *argv); - value = ioctl(fd, FDFLUSH, 0); - /* Don't bother closing. Exit does - * that, so we can save a few bytes */ - /* close(fd); */ + if (ioctl(fd, FDFLUSH, 0)) + perror_msg_and_die("%s", *argv); - if (value) { - perror(*argv); - exit(FALSE); - } - return(TRUE); + return EXIT_SUCCESS; }