summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-09-02 19:04:42 +0200
committerJeremy Allison <jra@samba.org>2019-09-10 23:14:30 +0000
commitba72d8231f836e364304996467f088e1ea8ca448 (patch)
tree351887e8e3f443c17bf6e19a12f49556ca5f8571 /source3/lib
parent95655fe683d499d93f3844ed72ad332ef64adb96 (diff)
downloadsamba-ba72d8231f836e364304996467f088e1ea8ca448.tar.gz
lib: Properly #ifdef __LIB_FILE_ID_H__
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/file_id.h5
1 files changed, 5 insertions, 0 deletions
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 <http://www.gnu.org/licenses/>.
*/
+#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