]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
lib: Properly #ifdef __LIB_FILE_ID_H__
authorVolker Lendecke <vl@samba.org>
Mon, 2 Sep 2019 17:04:42 +0000 (19:04 +0200)
committerJeremy Allison <jra@samba.org>
Tue, 10 Sep 2019 23:14:30 +0000 (23:14 +0000)
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
source3/lib/file_id.h

index 509e924c1fe341afccdcd25d6a6e0e40f2fe1de8..ddcaea6c94df9d8431c8a864361d88edc17c9353 100644 (file)
@@ -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