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.
This commit is contained in:
Warner Losh 2020-09-25 18:20:45 +00:00
parent 66c613905f
commit f9f298a2f4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=366165

View File

@ -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' },