summaryrefslogtreecommitdiffstats
path: root/usr.bin/id
diff options
context:
space:
mode:
authorceri <ceri@FreeBSD.org>2006-09-26 22:28:12 +0000
committerceri <ceri@FreeBSD.org>2006-09-26 22:28:12 +0000
commitf4747864d3fe02476c8e0067a8981d3bdbb95801 (patch)
treef32045eeac0341d585a6cf7bd8c6f667370e7c0a /usr.bin/id
parent91aa6d24db852141d26a9980fe8d6d0ca4e5924b (diff)
downloadFreeBSD-src-f4747864d3fe02476c8e0067a8981d3bdbb95801.zip
FreeBSD-src-f4747864d3fe02476c8e0067a8981d3bdbb95801.tar.gz
Add a -a option as a no-op for Solaris compatibility, as briefly
discussed on src-committers. This is intentionally not included in the usage() function as it would confuse the output too much. Approved by: jhb MFC after: 1 week
Diffstat (limited to 'usr.bin/id')
-rw-r--r--usr.bin/id/id.16
-rw-r--r--usr.bin/id/id.c4
2 files changed, 8 insertions, 2 deletions
diff --git a/usr.bin/id/id.1 b/usr.bin/id/id.1
index 899ed7d..b14e4e5 100644
--- a/usr.bin/id/id.1
+++ b/usr.bin/id/id.1
@@ -35,7 +35,7 @@
.\" @(#)id.1 8.1 (Berkeley) 6/6/93
.\" $FreeBSD$
.\"
-.Dd May 3, 2004
+.Dd September 26, 2006
.Dt ID 1
.Os
.Sh NAME
@@ -89,6 +89,10 @@ as white-space separated numbers, in no particular order.
Display the MAC label of the current process.
.It Fl P
Display the id as a password file entry.
+.It Fl a
+Ignored for compatibility with other
+.Nm
+implementations.
.It Fl g
Display the effective group ID as a number.
.It Fl n
diff --git a/usr.bin/id/id.c b/usr.bin/id/id.c
index 854c9cd..729e97e 100644
--- a/usr.bin/id/id.c
+++ b/usr.bin/id/id.c
@@ -96,7 +96,7 @@ main(int argc, char *argv[])
}
while ((ch = getopt(argc, argv,
- (isgroups || iswhoami) ? "" : "APGMgnpru")) != -1)
+ (isgroups || iswhoami) ? "" : "APGMagnpru")) != -1)
switch(ch) {
#ifdef USE_BSM_AUDIT
case 'A':
@@ -112,6 +112,8 @@ main(int argc, char *argv[])
case 'P':
Pflag = 1;
break;
+ case 'a':
+ break;
case 'g':
gflag = 1;
break;
OpenPOWER on IntegriCloud