From: Eric Andersen Date: Mon, 16 Sep 2002 06:32:16 +0000 (-0000) Subject: Fix stupid typo noticed by John Mullin X-Git-Tag: 0_60_4~21 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=e18cb71e0c680a165243b26b872e0ccdfd9a37f1;p=oweals%2Fbusybox.git Fix stupid typo noticed by John Mullin --- 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) {