diff --git a/ChangeLog b/ChangeLog index 9791a7f..66f388f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-06-16 Miklos Szeredi + + * Add missing fuse_reply_bmap to versionscript. Debian + Bug#531329. Reported by Goswin Brederlow + 2009-05-27 Miklos Szeredi * 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;