From owner-freebsd-bugs Fri Mar 17 15:40:54 1995 Return-Path: bugs-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id PAA00218 for bugs-outgoing; Fri, 17 Mar 1995 15:40:54 -0800 Received: from suntan.Tandem.com (suntan.tandem.com [192.216.221.8]) by freefall.cdrom.com (8.6.10/8.6.6) with SMTP id PAA00211 for ; Fri, 17 Mar 1995 15:40:51 -0800 Received: from zorch.sf-bay.org by suntan.Tandem.com (4.1/suntan5.950313) for bugs@freebsd.org id AA17591; Fri, 17 Mar 95 15:40:18 PST Received: (from scott@localhost) by zorch.sf-bay.org (8.6.9/8.6.9) id PAA09324 for bugs@freebsd.org; Fri, 17 Mar 1995 15:39:29 -0800 Date: Fri, 17 Mar 1995 15:39:29 -0800 From: Scott Hazen Mueller Message-Id: <199503172339.PAA09324@zorch.sf-bay.org> To: bugs@FreeBSD.org Subject: bug in libc Sender: bugs-owner@FreeBSD.org Precedence: bulk rpc/auth_unix.c sense of test for authunix_maxgrouplist being changed is backwards. *** auth_unix.c Fri Mar 17 14:44:56 1995 --- auth_unix.c.orig Fri Mar 17 14:44:30 1995 *************** *** 149,155 **** aup.aup_gid = gid; /* GW: continuation of max group list hack */ if(authunix_maxgrouplist != 0) { ! aup.aup_len = ((len < authunix_maxgrouplist) ? len : authunix_maxgrouplist); } else { aup.aup_len = (u_int)len; --- 149,155 ---- aup.aup_gid = gid; /* GW: continuation of max group list hack */ if(authunix_maxgrouplist != 0) { ! aup.aup_len = ((len > authunix_maxgrouplist) ? len : authunix_maxgrouplist); } else { aup.aup_len = (u_int)len;