From 3783597cd34b2bf4a69e6354e61547c69b7fa21d Mon Sep 17 00:00:00 2001 From: andersen Date: Mon, 16 Sep 2002 06:32:16 +0000 Subject: Fix stupid typo noticed by John Mullin git-svn-id: svn://busybox.net/trunk/busybox@5499 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- libpwdgrp/initgroups.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-55-g6feb