summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2010-01-14 09:54:42 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2010-01-14 09:54:42 +0000
commitd29bc735ad9d10ca2d71e772d432983c8618fb26 (patch)
tree9361c2fb4df82980c5f0ca5142cc05ad974837ad
parent4c3d9b19576c228e1a3c6eab9a6942d9431f6ce4 (diff)
downloadfuse-d29bc735ad9d10ca2d71e772d432983c8618fb26.tar.gz
* Fix compile error on FreeBSD. Patch by Jay Sullivan
-rw-r--r--ChangeLog4
-rw-r--r--lib/fuse_lowlevel.c2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 47e6100..1c197e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-01-14 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Fix compile error on FreeBSD. Patch by Jay Sullivan
+
2009-12-17 Miklos Szeredi <miklos@szeredi.hu>
* Use '--no-canonicalize' option of mount(8) (available in
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 7385de1..c519bfb 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -1728,7 +1728,7 @@ out_free:
/*
* This is currently not implemented on other than Linux...
*/
-int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[]);
+int fuse_req_getgroups(fuse_req_t req, int size, gid_t list[])
{
return -ENOSYS;
}