Date: Wed, 29 May 2013 22:29:33 +0000 (UTC) From: Mark Johnston <markj@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r251112 - stable/8/usr.sbin/newsyslog Message-ID: <201305292229.r4TMTXTO079438@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: markj Date: Wed May 29 22:29:33 2013 New Revision: 251112 URL: http://svnweb.freebsd.org/changeset/base/251112 Log: Revert my previous merge. There's a variable name difference between head and stable (dirfd vs. dir_fd) and I managed to get it wrong again when I did the MFC, even after I tested. Modified: stable/8/usr.sbin/newsyslog/newsyslog.c Directory Properties: stable/8/usr.sbin/newsyslog/ (props changed) Modified: stable/8/usr.sbin/newsyslog/newsyslog.c ============================================================================== --- stable/8/usr.sbin/newsyslog/newsyslog.c Wed May 29 21:08:23 2013 (r251111) +++ stable/8/usr.sbin/newsyslog/newsyslog.c Wed May 29 22:29:33 2013 (r251112) @@ -1447,27 +1447,16 @@ oldlog_entry_compare(const void *a, cons * tm if this is the case; otherwise return false. */ static int -validate_old_timelog(int fd, const struct dirent *dp, const char *logfname, - struct tm *tm) +validate_old_timelog(const struct dirent *dp, const char *logfname, struct tm *tm) { - struct stat sb; size_t logfname_len; char *s; int c; logfname_len = strlen(logfname); - if (dp->d_type != DT_REG) { - /* - * Some filesystems (e.g. NFS) don't fill out the d_type field - * and leave it set to DT_UNKNOWN; in this case we must obtain - * the file type ourselves. - */ - if (dp->d_type != DT_UNKNOWN || - fstatat(fd, dp->d_name, &sb, AT_SYMLINK_NOFOLLOW) != 0 || - !S_ISREG(sb.st_mode)) - return (0); - } + if (dp->d_type != DT_REG) + return (0); /* Ignore everything but files with our logfile prefix. */ if (strncmp(dp->d_name, logfname, logfname_len) != 0) return (0); @@ -1519,7 +1508,7 @@ static void delete_oldest_timelog(const struct conf_entry *ent, const char *archive_dir) { char *logfname, *s, *dir, errbuf[80]; - int dir_fd, i, logcnt, max_logcnt; + int dirfd, i, logcnt, max_logcnt; struct oldlog_entry *oldlogs; struct dirent *dp; const char *cdir; @@ -1551,9 +1540,9 @@ delete_oldest_timelog(const struct conf_ /* First we create a 'list' of all archived logfiles */ if ((dirp = opendir(dir)) == NULL) err(1, "Cannot open log directory '%s'", dir); - dir_fd = dirfd(dirp); + dirfd = dirfd(dirp); while ((dp = readdir(dirp)) != NULL) { - if (validate_old_timelog(dir_fd, dp, logfname, &tm) == 0) + if (validate_old_timelog(dp, logfname, &tm) == 0) continue; /* @@ -2259,7 +2248,7 @@ mtime_old_timelog(const char *file) { struct stat sb; struct tm tm; - int dirfd; + int dir_fd; time_t t; struct dirent *dp; DIR *dirp; @@ -2284,13 +2273,13 @@ mtime_old_timelog(const char *file) warn("Cannot open log directory '%s'", dir); return (t); } - dirfd = dirfd(dirp); + dir_fd = dirfd(dirp); /* Open the archive dir and find the most recent archive of logfname. */ while ((dp = readdir(dirp)) != NULL) { - if (validate_old_timelog(dir_fd, dp, logfname, &tm) == 0) + if (validate_old_timelog(dp, logfname, &tm) == 0) continue; - if (fstatat(dir_fd, logfname, &sb, AT_SYMLINK_NOFOLLOW) == -1) { + if (fstatat(dir_fd, logfname, &sb, 0) == -1) { warn("Cannot stat '%s'", file); continue; }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201305292229.r4TMTXTO079438>