diff options
author | Michael Adam <obnox@samba.org> | 2011-05-31 13:30:34 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-05-31 18:37:29 +0200 |
commit | fdd225c3e41ed5a81ef02d39ac037818bde49c03 (patch) | |
tree | da73865b13cff091f57838c05ba94b9b5ea5d43d /source3 | |
parent | 75cfafd69864fccacd1e6c3ca8d27b42a48dbe1c (diff) | |
download | samba-fdd225c3e41ed5a81ef02d39ac037818bde49c03.tar.gz samba-fdd225c3e41ed5a81ef02d39ac037818bde49c03.tar.xz samba-fdd225c3e41ed5a81ef02d39ac037818bde49c03.zip |
s3:nmbd: add _NMBD_NMBD_H_ guard to nmbd.h
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nmbd/nmbd.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/source3/nmbd/nmbd.h b/source3/nmbd/nmbd.h index 5ee4edfae5e..47940e19401 100644 --- a/source3/nmbd/nmbd.h +++ b/source3/nmbd/nmbd.h @@ -18,9 +18,14 @@ * along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#ifndef _NMBD_NMBD_H_ +#define _NMBD_NMBD_H_ + #ifndef HAVE_PIPE #define SYNC_DNS 1 #endif #include "libsmb/nmblib.h" #include "nmbd/nmbd_proto.h" + +#endif /* _NMBD_NMBD_H_ */ |