aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernd Schubert <bschubert@ddn.com>2025-07-21 18:56:53 +0200
committerBernd Schubert <bernd@bsbernd.com>2025-07-22 14:47:12 +0200
commit7e2dc4abbe1333eeefe80f6efbb81df24fe297a0 (patch)
tree5247e27bed9e3004c08985f4fb387cae482e34fb
parent898def7594b3b63a44119f5d77c797644108e74e (diff)
downloadlibfuse-7e2dc4abbe1333eeefe80f6efbb81df24fe297a0.tar.gz
high level: Remove the nullpath_ok log message
This seems to be a left over - the file system has to set this variable in its ->init method, i.e. logging it in startup is not giving any helpful output. Closes: https://github.com/libfuse/libfuse/issues/1272 Signed-off-by: Bernd Schubert <bschubert@ddn.com>
-rw-r--r--lib/fuse.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/fuse.c b/lib/fuse.c
index 333fdc7..e997531 100644
--- a/lib/fuse.c
+++ b/lib/fuse.c
@@ -5073,10 +5073,6 @@ struct fuse *_fuse_new_31(struct fuse_args *args,
if (f->se == NULL)
goto out_free_fs;
- if (f->conf.debug) {
- fuse_log(FUSE_LOG_DEBUG, "nullpath_ok: %i\n", f->conf.nullpath_ok);
- }
-
/* Trace topmost layer by default */
f->fs->debug = f->conf.debug;
f->ctr = 0;