From 8b761b126c1a476a2ac36c90c87d0183ba34f4a8 Mon Sep 17 00:00:00 2001 From: Samuel Cabrero Date: Tue, 1 Oct 2019 17:14:04 +0200 Subject: [PATCH] s3:printing: Add header inclusion guards in queue_process.h Signed-off-by: Samuel Cabrero Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- source3/printing/queue_process.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source3/printing/queue_process.h b/source3/printing/queue_process.h index b7693649527..a325f13d329 100644 --- a/source3/printing/queue_process.h +++ b/source3/printing/queue_process.h @@ -20,6 +20,9 @@ along with this program. If not, see . */ +#ifndef _SOURCE3_PRINTING_QUEUE_PROCESS_H_ +#define _SOURCE3_PRINTING_QUEUE_PROCESS_H_ + bool printing_subsystem_init(struct tevent_context *ev_ctx, struct messaging_context *msg_ctx, bool start_daemons, @@ -30,3 +33,5 @@ void printing_subsystem_update(struct tevent_context *ev_ctx, pid_t start_background_queue(struct tevent_context *ev, struct messaging_context *msg, char *logfile); + +#endif /* _SOURCE3_PRINTING_QUEUE_PROCESS_H_ */ -- 2.47.3