From: Samuel Cabrero Date: Tue, 1 Oct 2019 15:14:04 +0000 (+0200) Subject: s3:printing: Add header inclusion guards in queue_process.h X-Git-Tag: talloc-2.3.1~322 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8b761b126c1a476a2ac36c90c87d0183ba34f4a8;p=thirdparty%2Fsamba.git s3:printing: Add header inclusion guards in queue_process.h Signed-off-by: Samuel Cabrero Reviewed-by: Andrew Bartlett Reviewed-by: Andreas Schneider --- 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_ */