Changeset 740 for vendor/current/source3/libsmb/clioplock.c
- Timestamp:
- Nov 14, 2012, 12:59:34 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
vendor/current/source3/libsmb/clioplock.c
r414 r740 19 19 20 20 #include "includes.h" 21 #include "../lib/util/tevent_ntstatus.h" 22 #include "async_smb.h" 23 #include "libsmb/libsmb.h" 21 24 22 25 /**************************************************************************** … … 38 41 struct cli_oplock_ack_state *state; 39 42 40 req = tevent_req_create(mem_ctx, &state, struct cli_oplock_ack_state); ;43 req = tevent_req_create(mem_ctx, &state, struct cli_oplock_ack_state); 41 44 if (req == NULL) { 42 45 return NULL; … … 67 70 NTSTATUS status; 68 71 69 status = cli_smb_recv(subreq, 0, NULL, NULL, NULL, NULL);72 status = cli_smb_recv(subreq, NULL, NULL, 0, NULL, NULL, NULL, NULL); 70 73 TALLOC_FREE(subreq); 71 74 if (!NT_STATUS_IS_OK(status)) {
Note:
See TracChangeset
for help on using the changeset viewer.