diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-09-16 06:32:16 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-09-16 06:32:16 +0000 |
commit | e18cb71e0c680a165243b26b872e0ccdfd9a37f1 (patch) | |
tree | bb5ff3c7e7fc861acbdeb184411ed032993060af | |
parent | c38678d14b87f8e2d4f0d610d0aa61c656f17539 (diff) | |
download | busybox-w32-e18cb71e0c680a165243b26b872e0ccdfd9a37f1.tar.gz busybox-w32-e18cb71e0c680a165243b26b872e0ccdfd9a37f1.tar.bz2 busybox-w32-e18cb71e0c680a165243b26b872e0ccdfd9a37f1.zip |
Fix stupid typo noticed by John Mullin <john.mullin@homenetcomm.com>
-rw-r--r-- | libpwdgrp/initgroups.c | 2 |
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) | |||
94 | while ((group = __getgrent(grp_fd)) != NULL) | 94 | while ((group = __getgrent(grp_fd)) != NULL) |
95 | #endif | 95 | #endif |
96 | { | 96 | { |
97 | if (group->gr_gid != gid); | 97 | if (group->gr_gid != gid) |
98 | { | 98 | { |
99 | tmp_mem = group->gr_mem; | 99 | tmp_mem = group->gr_mem; |
100 | while (*tmp_mem != NULL) { | 100 | while (*tmp_mem != NULL) { |