r25554: Convert last instances of BOOL, True and False to the standard types.
[jra/samba/.git] / source4 / libcli / smb2 / tdis.c
index 6ad3120740b59e8cb7f567d8c5bde152c886f228..5adad9dc6ede087b813d98a2fb1ab4467b12ed39 100644 (file)
@@ -30,7 +30,7 @@ struct smb2_request *smb2_tdis_send(struct smb2_tree *tree)
 {
        struct smb2_request *req;
 
-       req = smb2_request_init_tree(tree, SMB2_OP_TDIS, 0x04, False, 0);
+       req = smb2_request_init_tree(tree, SMB2_OP_TDIS, 0x04, false, 0);
        if (req == NULL) return NULL;
 
        SSVAL(req->out.body, 0x02, 0);
@@ -51,7 +51,7 @@ NTSTATUS smb2_tdis_recv(struct smb2_request *req)
                return smb2_request_destroy(req);
        }
 
-       SMB2_CHECK_PACKET_RECV(req, 0x04, False);
+       SMB2_CHECK_PACKET_RECV(req, 0x04, false);
        return smb2_request_destroy(req);
 }