Linux NFS development
 help / color / mirror / Atom feed
* [PATCH] reexport.c: Some Distros need the following include to avoid the following error
@ 2024-01-22 18:29 Steve Dickson
  2024-01-23 15:16 ` Steve Dickson
  0 siblings, 1 reply; 2+ messages in thread
From: Steve Dickson @ 2024-01-22 18:29 UTC (permalink / raw)
  To: Linux NFS Mailing list

reexport.c: In function ‘connect_fsid_service’:
reexport.c:41:28: error: implicit declaration of function ‘offsetof’ [-Werror=implicit-function-declaration]
   41 |                 addr_len = offsetof(struct sockaddr_un, sun_path) + strlen(addr.sun_path);
      |                            ^~~~~~~~
reexport.c:19:1: note: ‘offsetof’ is defined in header ‘<stddef.h>’; did you forget to ‘#include <stddef.h>’?
   18 | #include "xlog.h"
  +++ |+#include <stddef.h>
   19 |
reexport.c:41:37: error: expected expression before ‘struct’
   41 |                 addr_len = offsetof(struct sockaddr_un, sun_path) + strlen(addr.sun_path);
      |                                     ^~~~~~
cc1: some warnings being treated as errors

Signed-off-by: Steve Dickson <steved@redhat.com>
---
 support/reexport/reexport.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/support/reexport/reexport.c b/support/reexport/reexport.c
index c7bff6a..1febf59 100644
--- a/support/reexport/reexport.c
+++ b/support/reexport/reexport.c
@@ -9,6 +9,7 @@
 #include <sys/vfs.h>
 #include <unistd.h>
 #include <errno.h>
+#include <stddef.h>
 
 #include "nfsd_path.h"
 #include "conffile.h"
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2024-01-23 15:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-22 18:29 [PATCH] reexport.c: Some Distros need the following include to avoid the following error Steve Dickson
2024-01-23 15:16 ` Steve Dickson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox