(unsigned long) statbuf.st_gid, (unsigned long) SUDOERS_GID);
else if ((fp = fopen(sudoers, "r")) == NULL)
log_error(USE_ERRNO, "can't open %s", sudoers);
- else if (statbuf.st_size != 0) {
+ else {
/*
* Make sure we can actually read sudoers so we can present the
- * user with a reasonable error message.
+ * user with a reasonable error message (unlike the lexer).
*/
- if (fgetc(fp) == EOF)
- log_error(USE_ERRNO, "can't read %s", sudoers);
- rewind(fp);
+ if (statbuf.st_size != 0) {
+ if (fgetc(fp) == EOF)
+ log_error(USE_ERRNO, "can't read %s", sudoers);
+ rewind(fp);
+ }
+ (void) fcntl(fileno(fp), F_SETFD, 1);
}
- (void) fcntl(fileno(fp), F_SETFD, 1);
set_perms(PERM_ROOT); /* change back to root */
return(fp);