Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Sep 2020 18:20:46 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r366165 - head/usr.sbin/efivar
Message-ID:  <202009251820.08PIKkOf098564@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: imp
Date: Fri Sep 25 18:20:45 2020
New Revision: 366165
URL: https://svnweb.freebsd.org/changeset/base/366165

Log:
  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.

Modified:
  head/usr.sbin/efivar/efivar.c

Modified: head/usr.sbin/efivar/efivar.c
==============================================================================
--- head/usr.sbin/efivar/efivar.c	Fri Sep 25 18:20:41 2020	(r366164)
+++ head/usr.sbin/efivar/efivar.c	Fri Sep 25 18:20:45 2020	(r366165)
@@ -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' },



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202009251820.08PIKkOf098564>