$Id: update-patches 24 2008-08-31 14:56:13Z wbx $ --- nfs-utils-1.1.4.orig/utils/mountd/cache.c 2008-10-17 16:20:09.000000000 +0200 +++ nfs-utils-1.1.4/utils/mountd/cache.c 2009-01-03 13:48:33.000000000 +0100 @@ -118,54 +118,6 @@ void auth_unix_ip(FILE *f) free(he); } -void auth_unix_gid(FILE *f) -{ - /* Request are - * uid - * reply is - * uid expiry count list of group ids - */ - int uid; - struct passwd *pw; - gid_t glist[100], *groups = glist; - int ngroups = 100; - int rv, i; - char *cp; - - if (readline(fileno(f), &lbuf, &lbuflen) != 1) - return; - - cp = lbuf; - if (qword_get_int(&cp, &uid) != 0) - return; - - pw = getpwuid(uid); - if (!pw) - rv = -1; - else { - rv = getgrouplist(pw->pw_name, pw->pw_gid, groups, &ngroups); - if (rv == -1 && ngroups >= 100) { - groups = malloc(sizeof(gid_t)*ngroups); - if (!groups) - rv = -1; - else - rv = getgrouplist(pw->pw_name, pw->pw_gid, - groups, &ngroups); - } - } - qword_printint(f, uid); - qword_printint(f, time(0)+30*60); - if (rv >= 0) { - qword_printint(f, ngroups); - for (i=0; i