summaryrefslogtreecommitdiff
path: root/mcon/U/groupstype.U
diff options
context:
space:
mode:
Diffstat (limited to 'mcon/U/groupstype.U')
-rw-r--r--mcon/U/groupstype.U39
1 files changed, 20 insertions, 19 deletions
diff --git a/mcon/U/groupstype.U b/mcon/U/groupstype.U
index 55b5638..39727f1 100644
--- a/mcon/U/groupstype.U
+++ b/mcon/U/groupstype.U
@@ -1,13 +1,13 @@
-?RCS: $Id: groupstype.U,v 3.0.1.2 1994/10/29 16:18:08 ram Exp $
+?RCS: $Id$
?RCS:
-?RCS: Copyright (c) 1991-1993, Raphael Manfredi
+?RCS: Copyright (c) 1991-1997, 2004-2006, Raphael Manfredi
?RCS:
?RCS: You may redistribute only under the terms of the Artistic Licence,
?RCS: as specified in the README file that comes with the distribution.
?RCS: You may reuse parts of this distribution only within the terms of
?RCS: that same Artistic Licence; a copy of which may be found at the root
-?RCS: of the source tree for dist 3.0.
-?RCS:
+?RCS: of the source tree for dist 4.0.
+?RCS:
?RCS: Original Author: Andy Dougherty <doughera@lafcol.lafayette.edu>
?RCS:
?RCS: $Log: groupstype.U,v $
@@ -18,42 +18,43 @@
?RCS: Revision 3.0.1.1 1994/06/20 07:00:18 ram
?RCS: patch30: created by ADO
?RCS:
-?MAKE:groupstype: gidtype d_getgrps Myread Oldconfig Findhdr cat
+?MAKE:groupstype: gidtype d_getgrps Myread Oldconfig Findhdr cat d_setgrps
?MAKE: -pick add $@ %<
?INIT:groupstype=''
?S:groupstype:
?S: This variable defines Groups_t to be something like gid_t, int,
?S: ushort, or whatever type is used for the second argument to
-?S: getgroups(). Usually, this is the same of gidtype, but
-?S: sometimes it isn't.
+?S: getgroups() and setgroups(). Usually, this is the same as
+?S: gidtype (gid_t), but sometimes it isn't.
?S:.
?C:Groups_t (GROUPSTYPE):
?C: This symbol holds the type used for the second argument to
-?C: getgroups(). Usually, this is the same of gidtype, but
-?C: sometimes it isn't. It can be int, ushort, uid_t, etc...
+?C: getgroups() and setgroups(). Usually, this is the same as
+?C: gidtype (gid_t) , but sometimes it isn't.
+?C: It can be int, ushort, gid_t, etc...
?C: It may be necessary to include <sys/types.h> to get any
?C: typedef'ed information. This is only required if you have
-?C: getgroups().
+?C: getgroups() or setgroups()..
?C:.
-?H:?%<:#ifdef HAS_GETGROUPS
-?H:?%<:#define Groups_t $groupstype /* Type for 2nd arg to getgroups() */
+?H:?%<:#if defined(HAS_GETGROUPS) || defined(HAS_SETGROUPS)
+?H:?%<:#define Groups_t $groupstype /* Type for 2nd arg to [sg]etgroups() */
?H:?%<:#endif
?H:.
-?W:%<:getgroups HAS_GETGROUPS
-: Find type of 2nd arg to getgroups
+?W:%<:getgroups HAS_GETGROUPS setgroups HAS_SETGROUPS
+: Find type of 2nd arg to 'getgroups()' and 'setgroups()'
echo " "
-case "$d_getgrps" in
-'define')
+case "$d_getgrps$d_setgrps" in
+*define*)
case "$groupstype" in
'') dflt="$gidtype" ;;
*) dflt="$groupstype" ;;
esac
$cat <<EOM
-What is the type of the second argument to getgroups()? Usually this
-is the same as group ids, $gidtype, but not always.
+What type of pointer is the second argument to getgroups() and setgroups()?
+Usually this is the same as group ids, $gidtype, but not always.
EOM
- rp='What type is the second argument to getgroups()?'
+ rp='What type pointer is the second argument to getgroups() and setgroups()?'
. ./myread
groupstype="$ans"
;;