Fix indent.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
Konstantin Belousov 2020-02-12 12:23:46 +00:00
parent 4602214772
commit c626c88e58
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=357813

View File

@ -5627,26 +5627,30 @@ parse_args(char* argv[], int argc, bool *use_pathp, int *fdp)
print_usage(argv[0]);
_exit(0);
} else if (opt == 'f') {
/*
* -f XX can be used to specify a descriptor for the
* binary named at the command line (i.e., the later
* argument will specify the process name but the
* descriptor is what will actually be executed)
*/
if (j != arglen - 1) {
/* -f must be the last option in, e.g., -abcf */
_rtld_error("Invalid options: %s", arg);
rtld_die();
}
i++;
fd = parse_integer(argv[i]);
if (fd == -1) {
_rtld_error("Invalid file descriptor: '%s'",
argv[i]);
rtld_die();
}
*fdp = fd;
break;
/*
* -f XX can be used to specify a
* descriptor for the binary named at
* the command line (i.e., the later
* argument will specify the process
* name but the descriptor is what
* will actually be executed).
*
* -f must be the last option in, e.g., -abcf.
*/
if (j != arglen - 1) {
_rtld_error("Invalid options: %s", arg);
rtld_die();
}
i++;
fd = parse_integer(argv[i]);
if (fd == -1) {
_rtld_error(
"Invalid file descriptor: '%s'",
argv[i]);
rtld_die();
}
*fdp = fd;
break;
} else if (opt == 'p') {
*use_pathp = true;
} else {