diff options
| author | Suleiman Souhlal <ssouhlal@FreeBSD.org> | 2005-01-11 18:52:12 +0000 |
|---|---|---|
| committer | Suleiman Souhlal <ssouhlal@FreeBSD.org> | 2005-01-11 18:52:12 +0000 |
| commit | 7a13f01f6fda7bd9f85af002d8630ec108ad8c38 (patch) | |
| tree | 5c1330c5b4568a0fca4ba09fbfcf157af90586fd /usr.bin | |
| parent | 35e43d9cad81e23901b46d0655c8590ed4e5cf14 (diff) | |
Notes
Diffstat (limited to 'usr.bin')
| -rw-r--r-- | usr.bin/fstat/fstat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index 4ed1a78b48ca..a20469e63742 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -375,7 +375,7 @@ dofiles(struct kinfo_proc *kp) continue; } if (file.f_type == DTYPE_VNODE) - vtrans(file.f_data, i, file.f_flag); + vtrans(file.f_vnode, i, file.f_flag); else if (file.f_type == DTYPE_SOCKET) { if (checkfile == 0) socktrans(file.f_data, i); @@ -389,7 +389,7 @@ dofiles(struct kinfo_proc *kp) #ifdef DTYPE_FIFO else if (file.f_type == DTYPE_FIFO) { if (checkfile == 0) - vtrans(file.f_data, i, file.f_flag); + vtrans(file.f_vnode, i, file.f_flag); } #endif else { |
