diff options
author | CismonX <admin@cismon.net> | 2024-06-21 04:36:47 +0800 |
---|---|---|
committer | Bernd Schubert <bernd.schubert@fastmail.fm> | 2024-06-25 07:16:49 +0200 |
commit | 285465fbdb5a185eeb6bd7dc077356056c61e39f (patch) | |
tree | d43a188ce9161de42379921399aab051e4726191 /example/notify_inval_inode.c | |
parent | 0a62f5d76137b25f37b99caf726ceedbf094d60e (diff) | |
download | libfuse-285465fbdb5a185eeb6bd7dc077356056c61e39f.tar.gz |
Fix wrong use of the EBADFD errno
should use EBADF instead
Diffstat (limited to 'example/notify_inval_inode.c')
-rw-r--r-- | example/notify_inval_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/notify_inval_inode.c b/example/notify_inval_inode.c index de88c87..db24335 100644 --- a/example/notify_inval_inode.c +++ b/example/notify_inval_inode.c @@ -287,14 +287,14 @@ static void* update_fs_loop(void *data) { if (!options.no_notify && lookup_cnt) { /* Only send notification if the kernel is aware of the inode */ - /* Some errors (ENOENT, EBADFD, ENODEV) have to be accepted as the + /* Some errors (ENOENT, EBADF, ENODEV) have to be accepted as they * might come up during umount, when kernel side already releases * all inodes, but does not send FUSE_DESTROY yet. */ int ret = fuse_lowlevel_notify_inval_inode(se, FILE_INO, 0, 0); if ((ret != 0 && !is_stop) && - ret != -ENOENT && ret != -EBADFD && ret != -ENODEV) { + ret != -ENOENT && ret != -EBADF && ret != -ENODEV) { fprintf(stderr, "ERROR: fuse_lowlevel_notify_store() failed with %s (%d)\n", strerror(-ret), -ret); |