aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/id
diff options
context:
space:
mode:
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 899ed7d5c376..b14e4e56cbfa 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 854c9cd52bf3..729e97e54d63 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;