fstat() returns information about the target of any symbolic link that

was opened, not the link itself. Remove dead code.
This commit is contained in:
Tim J. Robbins 2002-06-15 08:31:19 +00:00
parent 3627fe880c
commit a1a27143bd
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=98245

View File

@ -182,7 +182,7 @@ cnt(file)
}
/*
* If all we need is the number of characters and it's a
* regular or linked file, just stat the puppy.
* regular file, just stat the puppy.
*/
if (dochar || domulti) {
if (fstat(fd, &sb)) {
@ -190,7 +190,7 @@ cnt(file)
(void)close(fd);
return (1);
}
if (S_ISREG(sb.st_mode) || S_ISLNK(sb.st_mode)) {
if (S_ISREG(sb.st_mode)) {
(void)printf(" %7lld", (long long)sb.st_size);
tcharct += sb.st_size;
(void)close(fd);