From: Samuel Cabrero Date: Sun, 3 Feb 2019 21:33:53 +0000 (+0100) Subject: s3-prefork: Add header inclusion guards X-Git-Tag: talloc-2.3.0~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6ac170267ca269bea80cfa16207b3670f1e4a26d;p=thirdparty%2Fsamba.git s3-prefork: Add header inclusion guards Signed-off-by: Samuel Cabrero Reviewed-by: Andreas Schneider --- diff --git a/source3/lib/server_prefork.h b/source3/lib/server_prefork.h index 703080bcd79..af112a91a3e 100644 --- a/source3/lib/server_prefork.h +++ b/source3/lib/server_prefork.h @@ -18,6 +18,9 @@ along with this program. If not, see . */ +#ifndef _SOURCE3_LIB_SERVER_PREFORK_H_ +#define _SOURCE3_LIB_SERVER_PREFORK_H_ + #include "system/network.h" #include #include "lib/tsocket/tsocket.h" @@ -293,3 +296,4 @@ int prefork_listen_recv(struct tevent_req *req, struct tsocket_address **srv_addr, struct tsocket_address **cli_addr); +#endif /* _SOURCE3_LIB_SERVER_PREFORK_H_ */