summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorSamuel Cabrero <scabrero@suse.de>2019-02-03 22:33:53 +0100
committerStefan Metzmacher <metze@samba.org>2019-07-22 16:49:14 +0000
commit6ac170267ca269bea80cfa16207b3670f1e4a26d (patch)
tree44e1278fadfaef8b8e65ffb785bbb139ccf01887 /source3/lib
parentd1d37a0a6e79f448fbf7443a4554e16e49b44131 (diff)
downloadsamba-6ac170267ca269bea80cfa16207b3670f1e4a26d.tar.gz
s3-prefork: Add header inclusion guards
Signed-off-by: Samuel Cabrero <scabrero@suse.de> Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/server_prefork.h4
1 files changed, 4 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
*/
+#ifndef _SOURCE3_LIB_SERVER_PREFORK_H_
+#define _SOURCE3_LIB_SERVER_PREFORK_H_
+
#include "system/network.h"
#include <tevent.h>
#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_ */