Commit e06d5fd0 authored by Joseph S. Atkinson's avatar Joseph S. Atkinson Committed by Rafaël Carré

file.c: Typo fix

Signed-off-by: default avatarRafaël Carré <rafael.carre@gmail.com>
parent b028610a
......@@ -180,6 +180,7 @@ John Paul Lorenti <jpl31 at columbia.edu> - ALSA device selection patch
Jon Stødle <jonstodle at gmail.com> - Norwegian Nynorsk translation
Jonas Larsen <jonas at vrt.dk> - Danish translation
Jörg <vlc-ml at aab.noctis dot de> - VLM seek/show media functions
Joseph S. Atkinson - FreeBSD port / patches
Joseph Tulou <brezhoneg1 at yahoo.fr> - small dc1394 patch, image demuxer
Jouni Kähkönen - Finnish translation
Julien Blache <jb at technologeek.org> - disc ejection code
......
......@@ -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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment