diff options
author | Stefan Metzmacher <metze@samba.org> | 2007-01-19 12:12:53 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:43:48 -0500 |
commit | 22bedb42ab964f3e3a771746c3218397b4bb318d (patch) | |
tree | 851622eff806cfcd3f4f35e89cfa2f0b44290218 /source4 | |
parent | f40182cb123c91d4bc8fd3dbf9c3cca615f72c31 (diff) | |
download | samba-22bedb42ab964f3e3a771746c3218397b4bb318d.tar.gz |
r20898: make it work to include ntvfs/ntvfs.h multiple times
metze
(This used to be commit 6814f38f000e9d44bdf25ca5bc1d69fd82522614)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/ntvfs/ntvfs.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source4/ntvfs/ntvfs.h b/source4/ntvfs/ntvfs.h index 69e638e1a1a..e805c97bbdb 100644 --- a/source4/ntvfs/ntvfs.h +++ b/source4/ntvfs/ntvfs.h @@ -19,6 +19,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#ifndef _NTVFS_H_ +#define _NTVFS_H_ + #include "libcli/raw/interfaces.h" #include "param/share.h" @@ -311,3 +314,5 @@ struct messaging_context; #include "librpc/gen_ndr/security.h" #include "librpc/gen_ndr/notify.h" #include "ntvfs/ntvfs_proto.h" + +#endif /* _NTVFS_H_ */ |