diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2007-08-27 18:10:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:54 -0500 |
commit | 61ffa08f4c95e29d301de9fbabd6e71c2dbc1056 (patch) | |
tree | 5639bb3b7628532080737e4e1b1ff0b835ee4977 /source4/smb_server | |
parent | 4fb038b0b8e7a4bb69ac0d9022684eeaca8a491a (diff) | |
download | samba-61ffa08f4c95e29d301de9fbabd6e71c2dbc1056.tar.gz |
r24712: No longer expose the 'BOOL' data type in any interfaces.
(This used to be commit 1ce32673d960c8b05b6c1b1b99e1976a402417ae)
Diffstat (limited to 'source4/smb_server')
-rw-r--r-- | source4/smb_server/smb_server.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source4/smb_server/smb_server.h b/source4/smb_server/smb_server.h index 0852404ac0e..10bafcd2086 100644 --- a/source4/smb_server/smb_server.h +++ b/source4/smb_server/smb_server.h @@ -267,14 +267,14 @@ struct smbsrv_connection { /* context that has been negotiated between the client and server */ struct { /* have we already done the NBT session establishment? */ - BOOL done_nbt_session; + bool done_nbt_session; /* only one negprot per connection is allowed */ - BOOL done_negprot; + bool done_negprot; /* multiple session setups are allowed, but some parameters are ignored in any but the first */ - BOOL done_sesssetup; + bool done_sesssetup; /* * Size of data we can send to client. Set @@ -299,7 +299,7 @@ struct smbsrv_connection { struct cli_credentials *server_credentials; /* did we tell the client we support encrypted passwords? */ - BOOL encrypted_passwords; + bool encrypted_passwords; /* Did we choose SPNEGO, or perhaps raw NTLMSSP, or even no extended security at all? */ const char *oid; @@ -362,7 +362,7 @@ struct smbsrv_connection { /* configuration parameters */ struct { enum security_types security; - BOOL nt_status_support; + bool nt_status_support; } config; /* some statictics for the management tools */ |