Changeset 745 for trunk/server/source4/libcli/smb2/util.c
- Timestamp:
- Nov 27, 2012, 4:43:17 PM (13 years ago)
- Location:
- trunk/server
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/server
- Property svn:mergeinfo changed
/vendor/current merged: 581,587,591,594,597,600,615,618,740
- Property svn:mergeinfo changed
-
trunk/server/source4/libcli/smb2/util.c
r414 r745 26 26 #include "libcli/smb2/smb2_calls.h" 27 27 #include "libcli/smb_composite/smb_composite.h" 28 #include "librpc/gen_ndr/ndr_security.h" 28 29 29 30 /* … … 109 110 NTSTATUS status; 110 111 uint32_t total_deleted = 0; 111 u int_t count, i;112 unsigned int count, i; 112 113 union smb_search_data *list; 113 114 TALLOC_CTX *tmp_ctx = talloc_new(tree); … … 221 222 return total_deleted; 222 223 } 224 225 /* 226 check if two SMB2 file handles are the same 227 */ 228 bool smb2_util_handle_equal(const struct smb2_handle h1, 229 const struct smb2_handle h2) 230 { 231 return (h1.data[0] == h2.data[0]) && (h1.data[1] == h2.data[1]); 232 }
Note:
See TracChangeset
for help on using the changeset viewer.