Commit e7045ced e7045ced1d0c1d761071f5a1ceeff708ce563672 by Sergey Poznyakoff

(opt_handler): Allow -noheader and -nototal to be used with -all.

1 parent eeaa3480
......@@ -175,6 +175,7 @@ opt_handler (int key, char *arg, void *unused, struct argp_state *state)
case ARG_ALL:
show_all++;
print_header = print_total = 1;
break;
case ARG_CREATE:
......@@ -890,8 +891,5 @@ main (int argc, char **argv)
exit (1);
}
if (show_all)
print_header = print_total = 1;
return (*action) ();
}
......