From: Volker Lendecke Date: Mon, 2 Sep 2019 17:04:42 +0000 (+0200) Subject: lib: Properly #ifdef __LIB_FILE_ID_H__ X-Git-Tag: talloc-2.3.1~930 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ba72d8231f836e364304996467f088e1ea8ca448;p=thirdparty%2Fsamba.git lib: Properly #ifdef __LIB_FILE_ID_H__ Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source3/lib/file_id.h b/source3/lib/file_id.h index 509e924c1fe..ddcaea6c94d 100644 --- a/source3/lib/file_id.h +++ b/source3/lib/file_id.h @@ -19,6 +19,9 @@ along with this program. If not, see . */ +#ifndef __LIB_FILE_ID_H__ +#define __LIB_FILE_ID_H__ + #include "librpc/gen_ndr/file_id.h" /* The following definitions come from lib/file_id.c */ @@ -40,3 +43,5 @@ void pull_file_id_24(const char *buf, struct file_id *id); * Make a SMB File-ID from itime */ uint64_t make_file_id_from_itime(SMB_STRUCT_STAT *st); + +#endif