Message ID | 20231025194701.456031-2-pvorel@suse.cz (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Add getrandom() fallback, cleanup headers | expand |
diff --git a/support/reexport/fsidd.c b/support/reexport/fsidd.c index d4b245e8..3e62b3fc 100644 --- a/support/reexport/fsidd.c +++ b/support/reexport/fsidd.c @@ -7,16 +7,6 @@ #include <dlfcn.h> #endif #include <event2/event.h> -#include <limits.h> -#include <stdint.h> -#include <stdio.h> -#include <sys/random.h> -#include <sys/socket.h> -#include <sys/stat.h> -#include <sys/types.h> -#include <sys/un.h> -#include <sys/vfs.h> -#include <unistd.h> #include "conffile.h" #include "reexport_backend.h"
Some of them are needed but included elsewhere, e.g. <string.h> included in xcommon.h, but at least <sys/random.h> is removed due further code simplification. Fixes: 6fd2732d ("export: Add fsidd") Signed-off-by: Petr Vorel <pvorel@suse.cz> --- support/reexport/fsidd.c | 10 ---------- 1 file changed, 10 deletions(-)