summaryrefslogtreecommitdiffstats
path: root/winsup/utils/mkgroup.c
diff options
context:
space:
mode:
authorPierre Humblet <phumblet@phumblet.no-ip.org>2003-03-01 16:38:26 +0000
committerPierre Humblet <phumblet@phumblet.no-ip.org>2003-03-01 16:38:26 +0000
commitf78765daddab38eb37fb9ee28960bac930b47754 (patch)
treeeab595e60ce6716c312e3df8b0c1ad77c1e366c5 /winsup/utils/mkgroup.c
parent5a082e9eac4c97b8ef669f43788c40f733da1646 (diff)
downloadcygnal-f78765daddab38eb37fb9ee28960bac930b47754.tar.gz
cygnal-f78765daddab38eb37fb9ee28960bac930b47754.tar.bz2
cygnal-f78765daddab38eb37fb9ee28960bac930b47754.zip
2003-03-01 Pierre Humblet <pierre.humblet@ieee.org>
* mkpasswd.cc (main): On Win95, output both a default line and a line for the current user (if known) with a pseudorandom uid. If the -u switch is given, produce a line for the specified user. * mkgroup.cc (main): On Win95 change the group name from "unknown" to "all".
Diffstat (limited to 'winsup/utils/mkgroup.c')
-rw-r--r--winsup/utils/mkgroup.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/utils/mkgroup.c b/winsup/utils/mkgroup.c
index dacd7ae86..2378e14b1 100644
--- a/winsup/utils/mkgroup.c
+++ b/winsup/utils/mkgroup.c
@@ -612,7 +612,7 @@ main (int argc, char **argv)
/* This takes Windows 9x/ME into account. */
if (!isNT)
{
- printf ("unknown::%ld:\n", DOMAIN_ALIAS_RID_ADMINS);
+ printf ("all::%ld:\n", DOMAIN_ALIAS_RID_ADMINS);
return 0;
}