setfiles: fix up inconsistent indentation

Commit 7ad84e7c8d ("Add restorecon -x option to not cross FS
boundaries", 2020-06-18) used spaces vs. TABs inconsistently; run
"unexpand" on the affected lines to make the indentation conform to the
rest of the source code.

Cc: "Richard W.M. Jones" <rjones@redhat.com>
Cc: Petr Lautrbach <plautrba@redhat.com>
Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=1794518
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
This commit is contained in:
Laszlo Ersek 2022-05-03 10:23:22 +02:00 committed by Petr Lautrbach
parent d108226d3f
commit aab2498a82
1 changed files with 5 additions and 5 deletions

View File

@ -368,13 +368,13 @@ int main(int argc, char **argv)
case '0':
null_terminated = 1;
break;
case 'x':
if (iamrestorecon) {
case 'x':
if (iamrestorecon) {
r_opts.xdev = SELINUX_RESTORECON_XDEV;
} else {
} else {
usage(argv[0]);
}
break;
}
break;
case 'T':
nthreads = strtoull(optarg, &endptr, 10);
if (*optarg == '\0' || *endptr != '\0')