assert(ino == 2);
if (strcmp(name, "hello_ll_getxattr_name") == 0)
{
- char *buf = "hello_ll_getxattr_value";
+ const char *buf = "hello_ll_getxattr_value";
fuse_reply_buf(req, buf, strlen(buf));
}
else
(void)flags;
(void)size;
assert(ino == 2);
+ const char* exp_val = "hello_ll_setxattr_value";
if (strcmp(name, "hello_ll_setxattr_name") == 0 &&
- strcmp(value, "hello_ll_setxattr_value") == 0)
+ strlen(exp_val) == size &&
+ strncmp(value, exp_val, size) == 0)
{
fuse_reply_err(req, 0);
}