r25554: Convert last instances of BOOL, True and False to the standard types.
[abartlet/samba.git/.git] / source4 / libcli / smb2 / find.c
index e8643f18684149d904879ea4d01a298b5239a2a5..6d0a9c80726ce2ab9713000f6674c9452063c24e 100644 (file)
@@ -32,7 +32,7 @@ struct smb2_request *smb2_find_send(struct smb2_tree *tree, struct smb2_find *io
        struct smb2_request *req;
        NTSTATUS status;
 
-       req = smb2_request_init_tree(tree, SMB2_OP_FIND, 0x20, True, 0);
+       req = smb2_request_init_tree(tree, SMB2_OP_FIND, 0x20, true, 0);
        if (req == NULL) return NULL;
 
        SCVAL(req->out.body, 0x02, io->in.level);
@@ -67,7 +67,7 @@ NTSTATUS smb2_find_recv(struct smb2_request *req, TALLOC_CTX *mem_ctx,
                return smb2_request_destroy(req);
        }
 
-       SMB2_CHECK_PACKET_RECV(req, 0x08, True);
+       SMB2_CHECK_PACKET_RECV(req, 0x08, true);
 
        status = smb2_pull_o16s32_blob(&req->in, mem_ctx, 
                                       req->in.body+0x02, &io->out.blob);