| commit | 4712e22300315fcad068cc611de6866bb1e2a502 | [log] [tgz] |
|---|---|---|
| author | Russ Cox <rsc@swtch.com> | Fri Jul 04 02:54:06 2008 -0400 |
| committer | Russ Cox <rsc@swtch.com> | Fri Jul 04 02:54:06 2008 -0400 |
| tree | 4f3c3f5ae18e365a54f91e54aaa0900b9581654c | |
| parent | d07db89b00a55db3ca9c3577422cbd9be722dae6 [diff] |
lib9: use symlink size, not target size, in dirstat
diff --git a/src/lib9/_p9dir.c b/src/lib9/_p9dir.c index c7578a5..bc54d67 100644 --- a/src/lib9/_p9dir.c +++ b/src/lib9/_p9dir.c
@@ -203,8 +203,10 @@ d->mode |= DMDIR; d->qid.type = QTDIR; } - if(S_ISLNK(lst->st_mode)) /* yes, lst not st */ + if(S_ISLNK(lst->st_mode)){ /* yes, lst not st */ d->mode |= DMSYMLINK; + d->length = lst->st_size; + } if(S_ISFIFO(st->st_mode)) d->mode |= DMNAMEDPIPE; if(S_ISSOCK(st->st_mode))