=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/pwutil.c,v retrieving revision 1.3 retrieving revision 1.4 diff -c -r1.3 -r1.4 *** src/usr.bin/sudo/Attic/pwutil.c 2010/03/04 12:21:36 1.3 --- src/usr.bin/sudo/Attic/pwutil.c 2010/07/08 21:11:31 1.4 *************** *** 106,112 **** { const struct passwd *pw1 = (const struct passwd *) v1; const struct passwd *pw2 = (const struct passwd *) v2; ! return(strcmp(pw1->pw_name, pw2->pw_name)); } #define FIELD_SIZE(src, name, size) \ --- 106,112 ---- { const struct passwd *pw1 = (const struct passwd *) v1; const struct passwd *pw2 = (const struct passwd *) v2; ! return(strcasecmp(pw1->pw_name, pw2->pw_name)); } #define FIELD_SIZE(src, name, size) \ *************** *** 408,414 **** { const struct group *grp1 = (const struct group *) v1; const struct group *grp2 = (const struct group *) v2; ! return(strcmp(grp1->gr_name, grp2->gr_name)); } struct group * --- 408,414 ---- { const struct group *grp1 = (const struct group *) v1; const struct group *grp2 = (const struct group *) v2; ! return(strcasecmp(grp1->gr_name, grp2->gr_name)); } struct group *