=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/sudo/Attic/fileops.c,v retrieving revision 1.6 retrieving revision 1.7 diff -c -r1.6 -r1.7 *** src/usr.bin/sudo/Attic/fileops.c 2008/11/14 11:58:08 1.6 --- src/usr.bin/sudo/Attic/fileops.c 2009/04/11 11:48:06 1.7 *************** *** 54,60 **** #endif #ifndef lint ! __unused static const char rcsid[] = "$Sudo: fileops.c,v 1.16 2008/11/09 14:13:12 millert Exp $"; #endif /* lint */ /* --- 54,60 ---- #endif #ifndef lint ! __unused static const char rcsid[] = "$Sudo: fileops.c,v 1.17 2009/03/12 00:03:04 millert Exp $"; #endif /* lint */ /* *************** *** 172,178 **** /* Trim leading and trailing whitespace/newline */ len = strlen(buf); ! while (len > 0 && isspace(buf[len - 1])) buf[--len] = '\0'; for (cp = buf; isblank(*cp); cp++) continue; --- 172,178 ---- /* Trim leading and trailing whitespace/newline */ len = strlen(buf); ! while (len > 0 && isspace((unsigned char)buf[len - 1])) buf[--len] = '\0'; for (cp = buf; isblank(*cp); cp++) continue;