Age | Commit message (Collapse) | Author | Lines | |
---|---|---|---|---|
2013-07-24 | libfuse: remove "-D_FILE_OFFSET_BITS=64" from fuse.pc | Miklos Szeredi | -2/+4 | |
add AC_SYS_LARGEFILE to your configure.ac instead. | ||||
2012-07-04 | Fix build with automake >= 1.12.1 | Olivier Blin | -4/+4 | |
mkdir_p is deprecated since automake 1.12.1 (see automake commit 7a1eb9ff9027929687f12905e131f6fda3fa6d0c). MKDIR_P should be used instead of mkdir_p. This is available since autoconf 2.59d (2006-06-05), by calling AC_PROG_MKDIR_P. The mkdir_p workaround was not working anyway for out-of-tree builds, since the ../mkinstalldirs path would be incorrect. | ||||
2012-07-04 | Fix install from out-of-tree build | Olivier Blin | -1/+1 | |
When building out-of-tree, install fails since it tries to copy mount.fuse binary from source directory. Patch initially from Damien Thébault (SoftAtHome) | ||||
2011-11-17 | Fix the following compile error | Miklos Szeredi | -0/+1 | |
fusermount.c: In function 'clone_newns': fusermount.c:315:2: warning: implicit declaration of function 'clone' [-Wimplicit-function-declaration] fusermount.c:315:44: error: 'CLONE_NEWNS' undeclared (first use in this function) fusermount.c:315:44: note: each undeclared identifier is reported only once for each function it appears in fusermount.c:317:1: warning: control reaches end of non-void function [-Wreturn-type] | ||||
2011-09-23 | Replace daemon() function with fork() | Anatol Pomozov | -2/+15 | |
daemon() is a BSD-ism. Although it is available on many platforms it is not a standard function. Some platforms (e.g. MacOSX) deprecated it. It is safer just to use fork() function that is a part of POSIX. | ||||
2011-05-25 | Spell checking comments, etc... | Reuben Hawkins | -1/+1 | |
...with the help of vim :set spell modified: FAQ modified: include/fuse.h modified: include/fuse_common.h modified: include/fuse_opt.h modified: lib/fuse_kern_chan.c modified: util/fusermount.c | ||||
2011-05-23 | cleaning up warnings | Reuben Hawkins | -4/+24 | |
fprintf(stderr, whatever); -> fprintf(stderr, "%s", whatever); checking return values on chdir and lockf where we weren't already modified: example/cusexmp.c modified: example/fioclient.c modified: util/fusermount.c | ||||
2011-04-15 | fusermount: Added support for auto_unmount option | Max Krasnyansky | -14/+49 | |
When this option is specified fusermount will become a daemon and wait for the parent to exit or die, which causes control fd to get closed. It will then try to unmount the original mountpoint. | ||||
2011-03-30 | Check the 'mtablock' for negative value | Laszlo Papp | -2/+4 | |
2011-03-30 | fusermount: clean up do_mount() function | Miklos Szeredi | -5/+4 | |
2011-03-30 | Eliminate the unused value | Laszlo Papp | -1/+1 | |
2011-03-30 | Fix resource leaks in fusermount | Laszlo Papp | -8/+10 | |
2011-03-30 | Do not pass NULL to xstrdup | Laszlo Papp | -8/+12 | |
2011-03-30 | Check the return value properly before passing it to any function | Laszlo Papp | -2/+4 | |
2011-03-11 | In case of failure to add to /etc/mtab don't umount. | Miklos Szeredi | -1/+1 | |
Reported by Marc Deslauriers | ||||
2011-03-11 | Revert "Fix cleanup in case of failed mount" | Miklos Szeredi | -30/+6 | |
This reverts commit bf5ffb5fd8558bd799791834def431c0cee5a11f. Cleanup of mount doesn't work the way it was envisioned, because the kernel doesn't follow mounts on the umount() call, hence it will find a non-mounted directory. | ||||
2011-01-31 | fusermount: only allow mount and umount if util-linux suppports ↵ | Miklos Szeredi | -135/+32 | |
--no-canonicalize Remove "legacy" util-linux support as missing --no-canonicalize cannot be worked around in fuse. | ||||
2011-01-31 | fusermount: chdir to / before performing mount/umount | Miklos Szeredi | -15/+10 | |
2011-01-31 | Fix cleanup in case of failed mount | Miklos Szeredi | -6/+29 | |
In case of failure to add to /etc/mtab use same mountpoint for cleanup as for mounting. Reported by Marc Deslauriers | ||||
2010-11-08 | fusermount: don't save/restore cwd | Miklos Szeredi | -15/+2 | |
Remove unnecessary restoring of current working directory in "fusermount -u" | ||||
2010-11-08 | update umount procedure | Miklos Szeredi | -9/+147 | |
If umount(8) supports --fake and --no-canonicalize (util-linux-ng version 2.18 or later), and umount(2) supports the UMOUNT_NOFOLLOW flag (linux kernel version 2.6.35 or later) then, "fusermount -u" will call the umount(2) system call and use "umount --fake ..." to update /etc/mtab Added --disable-legacy-umount option to configure. This disables the runtime checking of umount(8) version. When built with this option then "fusermount -u" will fail if umount(8) doesn't support the --fake and --no-canonicalize options. | ||||
2010-09-28 | Fix option escaping for fusermount. | Miklos Szeredi | -3/+17 | |
If the "fsname=" option contained a comma then the option parser in fusermount was confused (Novell bugzilla #641480). Fix by escaping commas when passing them over to fusermount. Reported by Jan Engelhardt | ||||
2010-06-24 | Add .gitignore files | Miklos Szeredi | -4/+0 | |
Add .gitignore files and delete .cvsignore files. | ||||
2010-06-15 | * Fix out-of-source build. | Miklos Szeredi | -3/+11 | |
2010-06-01 | * Remove "chmod root" from install of fusermount | Miklos Szeredi | -1/+0 | |
2010-04-26 | * Fix checking for symlinks in umount from /tmp. Reported by Al | Miklos Szeredi | -14/+32 | |
Viro * Fix umounting if /tmp is a symlink. Reported by Franco Broi | ||||
2010-02-18 | * Fix stack alignment for clone() | Miklos Szeredi | -5/+4 | |
2010-01-26 | * Fix race if two "fusermount -u" instances are run in parallel. | Miklos Szeredi | -57/+323 | |
Reported by Dan Rosenberg * Make sure that the path to be unmounted doesn't refer to a symlink | ||||
2009-07-02 | * fusermount: Do not silently ignore command line arguments. | Miklos Szeredi | -0/+4 | |
Patch by Sebastian Harl | ||||
2009-05-08 | Fix 'make install-strip'. Reported by Dominick Layfield | Miklos Szeredi | -1/+1 | |
2008-07-10 | Fix handling of (no)suid and (no)dev options... | Miklos Szeredi | -9/+27 | |
2008-04-09 | Update warning message for missing newline at end of fuse.conf | Miklos Szeredi | -3/+8 | |
2008-03-25 | Fix memory leaks on mount | Miklos Szeredi | -0/+1 | |
2007-12-23 | Fix './configure --disable-static' | Miklos Szeredi | -1/+1 | |
2007-12-12 | change indenting | Miklos Szeredi | -1252/+1305 | |
2007-06-21 | Add fs subtype support to mount.fuse | Miklos Szeredi | -15/+55 | |
2007-06-20 | Add fs subtype support to libfuse and fusermount | Miklos Szeredi | -48/+78 | |
2007-06-03 | libulockmgr: Work around a kernel bug in recv() | Miklos Szeredi | -2/+6 | |
2007-04-27 | Clean up init script, make it LSB compliant | Miklos Szeredi | -26/+62 | |
2007-04-27 | merge bugfix branch up to 2.6.4 | Miklos Szeredi | -1/+1 | |
2007-04-27 | libfuse: call umount(8) directly... | Miklos Szeredi | -31/+2 | |
2007-04-25 | update copyright dates | Miklos Szeredi | -1/+1 | |
2007-04-25 | *** empty log message *** | Miklos Szeredi | -125/+8 | |
2007-04-18 | Replace utils/mount.fuse "sh" script with a "C" program | Miklos Szeredi | -69/+154 | |
2007-03-14 | merge bugfixes up to merge3 | Miklos Szeredi | -2/+2 | |
2007-01-19 | merge up to fuse_2_6_merge1 | Miklos Szeredi | -3/+3 | |
2007-01-13 | Fix option parsing in mount.fuse | Miklos Szeredi | -3/+13 | |
2006-12-10 | mounting fixes | Miklos Szeredi | -230/+85 | |
2006-12-04 | build fixes | Miklos Szeredi | -1/+1 | |
2006-11-29 | Print a more helpful message in case the kernel doesn't support the ↵ | Miklos Szeredi | -1/+22 | |
'fuseblk' filesystem type |