Changeset 887 for trunk/client/src/smbwrp.c
- Timestamp:
- Jun 11, 2015, 11:20:04 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/client/src/smbwrp.c
r885 r887 1057 1057 return maperror(EINVAL); 1058 1058 } 1059 if (! cli_set_ea_path(cli, fname, name, value, size))1059 if (!NT_STATUS_IS_OK(cli_set_ea_path(cli, fname, name, value, size))) 1060 1060 { 1061 1061 return os2cli_errno(cli); … … 1073 1073 return maperror(EINVAL); 1074 1074 } 1075 if (! cli_set_ea_fnum(cli, file->fd, name, value, size))1075 if (!NT_STATUS_IS_OK(cli_set_ea_fnum(cli, file->fd, name, value, size))) 1076 1076 { 1077 1077 return os2cli_errno(cli); … … 1111 1111 pfealist->cbList = 0; 1112 1112 1113 if (! cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list))1113 if (!NT_STATUS_IS_OK(cli_get_ea_list_path(cli, fname, mem_ctx, &num_eas, &ea_list))) 1114 1114 { 1115 1115 debuglocal(4,"ea_get_file list failed - %s\n", cli_errstr(cli));
Note:
See TracChangeset
for help on using the changeset viewer.