summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRadek Podgorny <radek@podgorny.cz>2011-10-11 03:03:06 +0200
committerRadek Podgorny <radek@podgorny.cz>2011-10-11 03:03:06 +0200
commit6fcaa2bdf3fde08728ed9e908e47f202f32bf031 (patch)
tree51b267d83190eaec3e870290fc99356db02147af
parent0ea28ad9f00fa6d9baa30a312569eb53e3211b39 (diff)
downloadunionfs-fuse-6fcaa2bdf3fde08728ed9e908e47f202f32bf031.tar.gz
Added xattr support information when asked for version.
-rw-r--r--src/opts.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/opts.c b/src/opts.c
index 02a4e79..4476e9b 100644
--- a/src/opts.c
+++ b/src/opts.c
@@ -314,6 +314,9 @@ int unionfs_opt_proc(void *data, const char *arg, int key, struct fuse_args *out
return 0;
case KEY_VERSION:
printf("unionfs-fuse version: "VERSION"\n");
+#ifdef HAVE_SETXATTR
+ printf("(compiled with xattr support)\n");
+#endif
uopt.doexit = 1;
return 1;
default: