Message ID | 20231205201556.5477-1-pvorel@suse.cz (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/1] reexport/{fsidd,reexport}.c: Add missing <unistd.h> | expand |
diff --git a/support/reexport/fsidd.c b/support/reexport/fsidd.c index 8a70b78f..307e73e5 100644 --- a/support/reexport/fsidd.c +++ b/support/reexport/fsidd.c @@ -7,6 +7,7 @@ #include <dlfcn.h> #endif #include <event2/event.h> +#include <unistd.h> #include "conffile.h" #include "reexport_backend.h" diff --git a/support/reexport/reexport.c b/support/reexport/reexport.c index 0fb49a46..c7bff6a3 100644 --- a/support/reexport/reexport.c +++ b/support/reexport/reexport.c @@ -7,6 +7,7 @@ #endif #include <sys/types.h> #include <sys/vfs.h> +#include <unistd.h> #include <errno.h> #include "nfsd_path.h"
uClibc-ng requires this header for close(2), unlink(2) and write(2). Fixes: 1a4edb2a ("reexport/fsidd.c: Remove unused headers") Fixes: bdc79f02 ("support/reexport.c: Remove unused headers") Signed-off-by: Petr Vorel <pvorel@suse.cz> --- Hi Steve, I'm sorry to introduce a regression. Here is a fix, tested on glibc, musl and uClibc-ng. support/reexport/fsidd.c | 1 + support/reexport/reexport.c | 1 + 2 files changed, 2 insertions(+)