diff options
author | ache <ache@FreeBSD.org> | 1995-04-29 14:20:35 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1995-04-29 14:20:35 +0000 |
commit | ef44f537d3acfea3bb6c76590da23698bb1eb159 (patch) | |
tree | fe056ecf4e13d4c54d1f04586342bc60901733ef | |
parent | d120fd1cdd2823c06bbf12a5908bbe22d26fba79 (diff) | |
download | FreeBSD-src-ef44f537d3acfea3bb6c76590da23698bb1eb159.zip FreeBSD-src-ef44f537d3acfea3bb6c76590da23698bb1eb159.tar.gz |
Enable _POSIX_SAVED_IDS and fix comment to describe current situation
-rw-r--r-- | sys/sys/unistd.h | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/sys/sys/unistd.h b/sys/sys/unistd.h index 9d434b4..389d7c5 100644 --- a/sys/sys/unistd.h +++ b/sys/sys/unistd.h @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * @(#)unistd.h 8.2 (Berkeley) 1/7/94 - * $Id$ + * $Id: unistd.h,v 1.2 1994/08/02 07:54:04 davidg Exp $ */ #ifndef _SYS_UNISTD_H_ @@ -41,14 +41,11 @@ #define _POSIX_JOB_CONTROL /* implementation supports job control */ /* - * Although we have saved user/group IDs, we do not use them in setuid - * as described in POSIX 1003.1, because the feature does not work for - * root. We use the saved IDs in seteuid/setegid, which are not currently + * This feature does not work for root according to POSIX 1003.1. + * We use the saved IDs in seteuid/setegid, which are not currently * part of the POSIX 1003.1 specification. */ -#ifdef _NOT_AVAILABLE #define _POSIX_SAVED_IDS /* saved set-user-ID and set-group-ID */ -#endif #define _POSIX_VERSION 198808L #define _POSIX2_VERSION 199212L |