From: Joseph S. Atkinson Date: Tue, 22 Jun 2010 06:19:52 +0000 (+0200) Subject: file.c: Typo fix X-Git-Tag: 1.2.0-pre1~6096 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=e06d5fd0dd06e5dbd4456974d0225c386b083569;p=vlc file.c: Typo fix Signed-off-by: Rafaël Carré --- 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;