Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-09-16 10:32:16 +0400
committerEric Andersen <andersen@codepoet.org>2002-09-16 10:32:16 +0400
commite18cb71e0c680a165243b26b872e0ccdfd9a37f1 (patch)
treebb5ff3c7e7fc861acbdeb184411ed032993060af /libpwdgrp
parentc38678d14b87f8e2d4f0d610d0aa61c656f17539 (diff)
Fix stupid typo noticed by John Mullin <john.mullin@homenetcomm.com>
Diffstat (limited to 'libpwdgrp')
-rw-r--r--libpwdgrp/initgroups.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpwdgrp/initgroups.c b/libpwdgrp/initgroups.c
index 22ba6eb1e..f86b5a8f4 100644
--- a/libpwdgrp/initgroups.c
+++ b/libpwdgrp/initgroups.c
@@ -94,7 +94,7 @@ int initgroups(__const char *user, gid_t gid)
while ((group = __getgrent(grp_fd)) != NULL)
#endif
{
- if (group->gr_gid != gid);
+ if (group->gr_gid != gid)
{
tmp_mem = group->gr_mem;
while (*tmp_mem != NULL) {