summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiklos Szeredi <miklos@szeredi.hu>2009-06-18 09:26:22 +0000
committerMiklos Szeredi <miklos@szeredi.hu>2009-06-18 09:26:22 +0000
commitbc53eddb2f76be3e134aa5ed1814254aa289f898 (patch)
tree0b355ab25c9df24afd7ab8681f863008092d784d
parent0db74cc67c5e14e54f2e61bd586139776ab56452 (diff)
downloadfuse-bc53eddb2f76be3e134aa5ed1814254aa289f898.tar.gz
Add missing fuse_reply_bmap to versionscript. Debian Bug#531329. Reported by Goswin Brederlow
-rw-r--r--ChangeLog5
-rw-r--r--include/fuse_lowlevel.h2
-rw-r--r--lib/fuse_versionscript8
3 files changed, 12 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 9791a7f..66f388f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2009-06-16 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Add missing fuse_reply_bmap to versionscript. Debian
+ Bug#531329. Reported by Goswin Brederlow
+
2009-05-27 Miklos Szeredi <miklos@szeredi.hu>
* Don't call forget_node() if the lookup was negative and write()
diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h
index 1e32825..54cec8c 100644
--- a/include/fuse_lowlevel.h
+++ b/include/fuse_lowlevel.h
@@ -1058,7 +1058,7 @@ int fuse_reply_bmap(fuse_req_t req, uint64_t idx);
/**
* Add a directory entry to the buffer
*
- * Buffer needs to be large enough to hold the entry. Of it's not,
+ * Buffer needs to be large enough to hold the entry. If it's not,
* then the entry is not filled in but the size of the entry is still
* returned. The caller can check this by comparing the bufsize
* parameter with the returned entry size. If the entry size is
diff --git a/lib/fuse_versionscript b/lib/fuse_versionscript
index 4b5c8f3..f2608a8 100644
--- a/lib/fuse_versionscript
+++ b/lib/fuse_versionscript
@@ -153,6 +153,11 @@ FUSE_2.7 {
fuse_version;
} FUSE_2.6;
+FUSE_2.7.5 {
+ global:
+ fuse_reply_bmap;
+} FUSE_2.7;
+
FUSE_2.8 {
global:
fuse_fs_ioctl;
@@ -161,11 +166,10 @@ FUSE_2.8 {
fuse_notify_poll;
fuse_opt_add_opt_escaped;
fuse_pollhandle_destroy;
- fuse_reply_bmap;
fuse_reply_ioctl;
fuse_reply_ioctl_retry;
fuse_reply_poll;
local:
*;
-} FUSE_2.7;
+} FUSE_2.7.5;