Avoid nested function declarations in helper functions
authorBernd Schubert <bschubert@ddn.com>
Mon, 17 Feb 2025 22:39:04 +0000 (23:39 +0100)
committerBernd Schubert <bernd@bsbernd.com>
Tue, 18 Feb 2025 21:32:49 +0000 (22:32 +0100)
commitc6ae7425aa9cac34e5ce320b1ac3a09753f6c66f
tree7193ad786a76bfd64516c8e9d66a306723b6c1e2
parent7fe971b406706b25e2eb4064fa5dbd1c06c7c083
Avoid nested function declarations in helper functions

libfuse-3.17 introduced several functions that should only be called via
inlined helper functions, never directly. To enforce this, these functions
were declared within the inlined functions. However, this triggers the
compiler warning "-Werror=nested-externs".

While this warning is valid, the nested declarations were intentional to
prevent direct usage of these functions. Rather than suppressing the
warning with pragmas, move these function declarations outside the helper
functions while maintaining the intended access restrictions through other
means.

Closes: https://github.com/libfuse/libfuse/issues/1134
Signed-off-by: Bernd Schubert <bschubert@ddn.com>
include/fuse.h
include/fuse_lowlevel.h
lib/fuse.c
lib/fuse_lowlevel.c
lib/helper.c