1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:smbd: Add header inclusion guards in globals.h

Signed-off-by: Samuel Cabrero <scabrero@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Samuel Cabrero 2019-09-12 19:05:57 +02:00 committed by Andreas Schneider
parent 9a02c31deb
commit 8bc228900e

View File

@ -18,6 +18,9 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef _SOURCE3_SMBD_GLOBALS_H_
#define _SOURCE3_SMBD_GLOBALS_H_
#include "system/select.h"
#include "librpc/gen_ndr/smbXsrv.h"
#include "smbprofile.h"
@ -901,3 +904,5 @@ struct smbd_server_connection {
extern struct smbXsrv_client *global_smbXsrv_client;
void smbd_init_globals(void);
#endif /* _SOURCE3_SMBD_GLOBALS_H_ */