aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/tail.c
diff options
context:
space:
mode:
authorRob Landley <rob@landley.net>2018-12-04 21:29:51 -0600
committerRob Landley <rob@landley.net>2018-12-04 21:29:51 -0600
commit747e296ff656813340c9355d98b0a13cba8473bc (patch)
treee7ef2b20be56e2e5a2062168aa822fd6c6139b7d /toys/posix/tail.c
parent141a075c0e192dc9910e777270114b1864270bfd (diff)
downloadtoybox-747e296ff656813340c9355d98b0a13cba8473bc.tar.gz
Add FLAG(x) macro, expanding to (toys.optflags & FLAG_##x)
Diffstat (limited to 'toys/posix/tail.c')
-rw-r--r--toys/posix/tail.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/toys/posix/tail.c b/toys/posix/tail.c
index d01329c4..8c6548d3 100644
--- a/toys/posix/tail.c
+++ b/toys/posix/tail.c
@@ -136,7 +136,7 @@ static void do_tail(int fd, char *name)
long bytes = TT.c, lines = TT.n;
int linepop = 1;
- if (toys.optflags & FLAG_f) {
+ if (FLAG(f)) {
int f = TT.file_no*2;
char *s = name;
@@ -223,7 +223,7 @@ void tail_main(void)
{
char **args = toys.optargs;
- if (!(toys.optflags&(FLAG_n|FLAG_c))) {
+ if (!FLAG(n) && !FLAG(c)) {
char *arg = *args;
// handle old "-42" style arguments
@@ -237,14 +237,13 @@ void tail_main(void)
}
// Allocate 2 ints per optarg for -f
- if (toys.optflags&FLAG_f) {
+ if (FLAG(f)) {
if ((TT.ffd = inotify_init()) < 0) perror_exit("inotify_init");
TT.files = xmalloc(toys.optc*8);
}
- loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!(toys.optflags&FLAG_f)),
- 0, do_tail);
+ loopfiles_rw(args, O_RDONLY|WARN_ONLY|(O_CLOEXEC*!FLAG(f)), 0, do_tail);
- if ((toys.optflags & FLAG_f) && TT.file_no) {
+ if (FLAG(f) && TT.file_no) {
int len, last_fd = TT.files[(TT.file_no-1)*2], i, fd;
struct inotify_event ev;