From: Miklos Szeredi Date: Mon, 9 Jun 2008 10:21:28 +0000 (+0000) Subject: Fix mounting over symlink X-Git-Tag: fuse_2_8_0_pre2~19 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6134eff5f1833430f08376ee4d81b77345d6a1ae;p=qemu-gpiodev%2Flibfuse.git Fix mounting over symlink --- diff --git a/ChangeLog b/ChangeLog index 7a2344e..411df3c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-05-23 Miklos Szeredi + + * Fix mounting over symlink. Reported by Szabolcs Szakacsits + 2008-04-09 Miklos Szeredi * Update warning message for missing newline at end of fuse.conf diff --git a/lib/mount.c b/lib/mount.c index a882d3e..941644f 100644 --- a/lib/mount.c +++ b/lib/mount.c @@ -401,7 +401,7 @@ static int fuse_mount_sys(const char *mnt, struct mount_opts *mo, return -1; } - res = lstat(mnt, &stbuf); + res = stat(mnt, &stbuf); if (res == -1) { fprintf(stderr ,"fuse: failed to access mountpoint %s: %s\n", mnt, strerror(errno));