From e06d5fd0dd06e5dbd4456974d0225c386b083569 Mon Sep 17 00:00:00 2001 From: "Joseph S. Atkinson" Date: Tue, 22 Jun 2010 08:19:52 +0200 Subject: [PATCH] file.c: Typo fix MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafaël Carré --- THANKS | 1 + modules/access/file.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/THANKS b/THANKS index 0e0d009297..7bbcd7310c 100644 --- a/THANKS +++ b/THANKS @@ -180,6 +180,7 @@ John Paul Lorenti - ALSA device selection patch Jon Stødle - Norwegian Nynorsk translation Jonas Larsen - Danish translation Jörg - VLM seek/show media functions +Joseph S. Atkinson - FreeBSD port / patches Joseph Tulou - small dc1394 patch, image demuxer Jouni Kähkönen - Finnish translation Julien Blache - disc ejection code diff --git a/modules/access/file.c b/modules/access/file.c index 245fb9fe20..9d3de77498 100644 --- a/modules/access/file.c +++ b/modules/access/file.c @@ -96,7 +96,7 @@ static bool IsRemote (int fd) if (fstatvfs (fd, &stf)) return false; /* fstatvfs() is in POSIX, but MNT_LOCAL is not */ - return !(s.f_flag & MNT_LOCAL); + return !(stf.f_flag & MNT_LOCAL); #elif defined (HAVE_LINUX_MAGIC_H) struct statfs stf; -- 2.39.2