summaryrefslogtreecommitdiff
path: root/lib/libfuse
AgeCommit message (Expand)Author
2017-01-04Revert fuse_opt.c r1.17. It broke exfat-fuse and perhaps other plugins.Stefan Sperling
2016-11-23Empty strings are invalid arguments.Martin Pieuchot
2016-09-14Generate pkg-config files at build time like everything else. ThisMartin Natano
2016-09-07Fix fuse node lookups. Currently fusefs nodes in the kernel remember theMartin Natano
2016-09-04only regen pkg-config files when required; ok jasperMartin Natano
2016-08-30Use struct stat for storing attributes in fusebufs, because using structMartin Natano
2016-08-27Pull in <sys/time.h> for struct timespecPhilip Guenther
2016-05-24NUL-terminate argv when parsing options, following otherOkan Demirmen
2016-05-24Add missing strdup NULL checks; from Ray Lai.Okan Demirmen
2016-05-18update links; from rayJason McIntyre
2016-03-30for some time now mandoc has not required MLINKS to functionJason McIntyre
2015-12-24remove NULL-check before free()mmcc
2015-10-19missing deref on char check. from David BindermanTed Unangst
2015-08-24When an option is not recognized call the processing function withMartin Pieuchot
2015-07-07Skip mountpoint checking in case we only want the version or helpAntoine Jacoutot
2015-07-07Unbreak option parsing:Antoine Jacoutot
2015-06-03Remove -Werror from the Makefile: as it happened with asprintf, itReyk Floeter
2015-06-03It is better to check the asprintf return value for -1 instead of theReyk Floeter
2015-02-10Add a stub option for big_writes. This is needed by gvfs.Antoine Jacoutot
2015-02-06SIZE_MAX is standard, we should be using it in preference to theTodd C. Miller
2015-01-16Move to the <limits.h> universe.Theo de Raadt
2014-10-08use reallocarray(); ok dougTheo de Raadt
2014-05-20Add -o max_read=XXX support in fuse. This is needed by usmb to have aSylvestre Gallon
2014-05-20Add support for -o XXX or -oXXX options in libfuse.Sylvestre Gallon
2014-05-19as reported by Helg, should use realpath for mounts. ok guenther sylTed Unangst
2014-04-28Add support for 255 character file names in fuse.Sylvestre Gallon
2014-04-15Init outargs only once, and fix a bad bzero().Sylvestre Gallon
2014-03-24Warn the user if there is a missing mountpoint parameter.Sylvestre Gallon
2014-02-05Allow libfuse to compile with WARNINGS=yes. No functional change.Sylvestre Gallon
2014-02-05check return values in libfuse.Sylvestre Gallon
2014-01-29Add fuse support for IO_APPEND.Sylvestre Gallon
2014-01-23Fix .readdir() code following what is done in .getdir().Sylvestre Gallon
2014-01-21Mark fuse_opt_parse()'s third argument as a point to const, to match theJeremie Courreges-Anglas
2014-01-20Include fuse_opt.h in fuse.h.Sylvestre Gallon
2014-01-20hook mknod() if create() implementation is not present.Sylvestre Gallon
2014-01-16Add support for mknod in fuse.Sylvestre Gallon
2014-01-02Call fuse callbacks on FBT_INIT and FBT_DESTROY.Sylvestre Gallon
2013-12-20Add support for truncate in fuse.Sylvestre Gallon
2013-12-17define FUSE_{MAJOR,MINOR}_VERSION which many fuse helpers assume is defined.Jasper Lievisse Adriaanse
2013-12-10Remove an attempt to free a non-heap object.Sylvestre Gallon
2013-12-09Fix issues with dirent returning junk due to removal of bzero in version 1.14.Bob Beck
2013-12-03Does not append a NUL character to buf in readlink(2).Sylvestre Gallon
2013-12-03Add support for FBT_RECLAIM that allow us to free the representationSylvestre Gallon
2013-11-21Fix a big memory leak in libfuse.Sylvestre Gallon
2013-11-13Document the negative errno quirk used by callbacks in struct fuse_operations.Stefan Sperling
2013-11-11In fuse_loop(), use ssize_t to store return values from read(2) and write(2).Stefan Sperling
2013-11-09Simplify fuse_unmount(). No functional change.Stefan Sperling
2013-11-09Properly check realpath() return value during argv processing in libfuse.Stefan Sperling
2013-11-07add fuse_invalidate() and fuse_setup() functions.Sylvestre Gallon
2013-11-06Handle fuse client private data. Needed by encfs.Sylvestre Gallon