From 03487601c23d6ce7ca0f94ae9c717a454fac1d2c Mon Sep 17 00:00:00 2001 From: Doug Ambrisko Date: Fri, 5 May 2006 16:17:59 +0000 Subject: [PATCH] Fix the the duplicate cut-n-paste in linux_fstat64 pointed out by Alexander Leidinger. I forget to fix it in this version. --- sys/compat/linux/linux_stats.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/compat/linux/linux_stats.c b/sys/compat/linux/linux_stats.c index 7d546c482c92..70e11f7e79ec 100644 --- a/sys/compat/linux/linux_stats.c +++ b/sys/compat/linux/linux_stats.c @@ -524,7 +524,6 @@ linux_fstat64(struct thread *td, struct linux_fstat64_args *args) error = kern_fstat(td, args->fd, &buf); translate_fd_major_minor(td, args->fd, &buf); if (!error) - translate_fd_major_minor(td, args->fd, &buf); error = stat64_copyout(&buf, args->statbuf); return (error);