* src/id.c (main): Using -Z with -r or -n would fail with "id: cannot
print only names or real IDs in default format", in spite of that "-Z",
which specifies a non-default format. Now, it succeeds and ignores
the -n or -r option. The error was that the test for default_format
was not updated when I added the new --context (-Z) option in
commit
v6.9-33-g5320d0f.
if (just_user + just_group + just_group_list + just_context > 1)
error (EXIT_FAILURE, 0, _("cannot print \"only\" of more than one choice"));
- bool default_format = (just_user + just_group + just_group_list == 0);
+ bool default_format = (just_user + just_group + just_group_list
+ + just_context == 0);
if (default_format && (use_real || use_name))
error (EXIT_FAILURE, 0,