Check protocol version before sending notifications and return -ENOSYS if a
particular notification is not supported.
+2012-04-10 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Check protocol version before sending notifications and return
+ -ENOSYS if a particular notification is not supported.
+
2012-01-27 Miklos Szeredi <miklos@szeredi.hu>
* Interpret octal escape codes in options. Requested by Jan
if (!f)
return -ENODEV;
+ if (f->conn.proto_minor < 18)
+ return -ENOSYS;
+
outarg.parent = parent;
outarg.child = child;
outarg.namelen = namelen;
if (!f)
return -ENODEV;
+ if (f->conn.proto_minor < 15)
+ return -ENOSYS;
+
out.unique = 0;
out.error = FUSE_NOTIFY_STORE;
if (!f)
return -ENODEV;
+ if (f->conn.proto_minor < 15)
+ return -ENOSYS;
+
rreq = malloc(sizeof(*rreq));
if (rreq == NULL)
return -ENOMEM;