diff options
author | Warner Losh <imp@FreeBSD.org> | 2020-09-25 18:20:45 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2020-09-25 18:20:45 +0000 |
commit | f9f298a2f4e2328f8f031e23dd47d55a0477c038 (patch) | |
tree | 8c4a0d8676d288e2e735f5878f2da9edf1b38799 /usr.sbin/efivar | |
parent | 66c613905f4e07e4110f463f7d51ec97f3659943 (diff) | |
download | src-f9f298a2f4e2328f8f031e23dd47d55a0477c038.tar.gz src-f9f298a2f4e2328f8f031e23dd47d55a0477c038.zip |
Comment out bogus command line entry
Linux implements -d to mean --print-decimal. We don't implement that
and use -d for --device-path. Note that.
Notes
Notes:
svn path=/head/; revision=366165
Diffstat (limited to 'usr.sbin/efivar')
-rw-r--r-- | usr.sbin/efivar/efivar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/efivar/efivar.c b/usr.sbin/efivar/efivar.c index 8146812534e4..c1d36b9bb0ba 100644 --- a/usr.sbin/efivar/efivar.c +++ b/usr.sbin/efivar/efivar.c @@ -59,7 +59,7 @@ static struct option longopts[] = { { "name", required_argument, NULL, 'n' }, { "no-name", no_argument, NULL, 'N' }, { "print", no_argument, NULL, 'p' }, - { "print-decimal", no_argument, NULL, 'd' }, +// { "print-decimal", no_argument, NULL, 'd' }, /* unimplemnted clash with linux version */ { "raw-guid", no_argument, NULL, 'R' }, { "utf8", no_argument, NULL, 'u' }, { "write", no_argument, NULL, 'w' }, |