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:
parent
3627fe880c
commit
a1a27143bd
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user