Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

invalidate path binding #62

Open
Downchuck opened this issue Dec 21, 2017 · 1 comment
Open

invalidate path binding #62

Downchuck opened this issue Dec 21, 2017 · 1 comment

Comments

@Downchuck
Copy link

https://github.com/libfuse/libfuse/blob/master/example/invalidate_path.c

Pretty straightforward:

static int invalidate(struct fuse *fuse, const char *path) {
	int status = fuse_invalidate_path(fuse, path);
	if (status == -ENOENT) {
		return 0;
	} else {
		return status;
	}
@piranna
Copy link
Contributor

piranna commented Dec 21, 2017

Can you do a pull-request for that?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants