diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2006-01-23 17:11:24 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2006-01-23 17:11:24 +0000 |
commit | 83deefd65f262ba823905b2f38e8d79d4afbaa05 (patch) | |
tree | b0c92dd540d7930555051bd47b195396f304dba6 /include | |
parent | f8277506f4b43bfd349a012245ac5aea8cc6e6c0 (diff) | |
download | libfuse-83deefd65f262ba823905b2f38e8d79d4afbaa05.tar.gz |
revert to version 2.6
Diffstat (limited to 'include')
-rw-r--r-- | include/fuse.h | 4 | ||||
-rw-r--r-- | include/fuse_common.h | 2 | ||||
-rw-r--r-- | include/fuse_lowlevel.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/fuse.h b/include/fuse.h index 3c3a98f..a7182ac 100644 --- a/include/fuse.h +++ b/include/fuse.h @@ -547,7 +547,7 @@ void fuse_set_getcontext_func(struct fuse_context *(*func)(void)); # undef FUSE_MINOR_VERSION # undef fuse_main # if FUSE_USE_VERSION == 25 -# define FUSE_MINOR_VERSION 6 +# define FUSE_MINOR_VERSION 5 # define fuse_main(argc, argv, op) \ fuse_main_real_compat25(argc, argv, op, sizeof(*(op))) # define fuse_new fuse_new_compat25 @@ -590,7 +590,7 @@ void fuse_set_getcontext_func(struct fuse_context *(*func)(void)); # define FUSE_DEBUG FUSE_DEBUG_COMPAT1 # endif # endif -#elif FUSE_USE_VERSION < 27 +#elif FUSE_USE_VERSION < 26 # error Compatibility with API version other than 21, 22, 25 and 11 not supported #endif diff --git a/include/fuse_common.h b/include/fuse_common.h index 4304462..191b6f9 100644 --- a/include/fuse_common.h +++ b/include/fuse_common.h @@ -20,7 +20,7 @@ #define FUSE_MAJOR_VERSION 2 /** Minor version of FUSE library interface */ -#define FUSE_MINOR_VERSION 7 +#define FUSE_MINOR_VERSION 6 #define FUSE_MAKE_VERSION(maj, min) ((maj) * 10 + (min)) #define FUSE_VERSION FUSE_MAKE_VERSION(FUSE_MAJOR_VERSION, FUSE_MINOR_VERSION) diff --git a/include/fuse_lowlevel.h b/include/fuse_lowlevel.h index 0c4672f..8338927 100644 --- a/include/fuse_lowlevel.h +++ b/include/fuse_lowlevel.h @@ -1245,7 +1245,7 @@ void fuse_remove_signal_handlers(struct fuse_session *se); # include "fuse_lowlevel_compat.h" # undef FUSE_MINOR_VERSION # if FUSE_USE_VERSION == 25 -# define FUSE_MINOR_VERSION 6 +# define FUSE_MINOR_VERSION 5 # define fuse_lowlevel_ops fuse_lowlevel_ops_compat25 # define fuse_lowlevel_new fuse_lowlevel_new_compat25 # else @@ -1254,7 +1254,7 @@ void fuse_remove_signal_handlers(struct fuse_session *se); # define fuse_reply_statfs fuse_reply_statfs_compat # define fuse_reply_open fuse_reply_open_compat # endif -#elif FUSE_USE_VERSION < 27 +#elif FUSE_USE_VERSION < 26 # error Compatibility with low level API version other than 24 and 25 not supported #endif |