- Timestamp:
- 16/02/2010 23:07:11 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/backupclient/BackupClientFileAttributes.cpp
r2611 r2614 251 251 { \ 252 252 BOX_TRACE("Attribute Compare: " << message << " differ: " \ 253 "local " << a1->attribute<< ", " \254 "remote " << a2->attribute); \253 "local " << ntoh(a1->attribute) << ", " \ 254 "remote " << ntoh(a2->attribute)); \ 255 255 return false; \ 256 256 } … … 263 263 if(!IgnoreModTime) 264 264 { 265 int t1 = a1->ModificationTime/ 1000000;266 int t2 = a2->ModificationTime/ 1000000;265 uint64_t t1 = box_ntoh64(a1->ModificationTime) / 1000000; 266 uint64_t t2 = box_ntoh64(a2->ModificationTime) / 1000000; 267 267 if(t1 != t2) 268 268 { … … 276 276 if(!IgnoreAttrModTime) 277 277 { 278 int t1 = a1->AttrModificationTime/ 1000000;279 int t2 = a2->AttrModificationTime/ 1000000;278 uint64_t t1 = box_ntoh64(a1->AttrModificationTime) / 1000000; 279 uint64_t t2 = box_ntoh64(a2->AttrModificationTime) / 1000000; 280 280 if(t1 != t2) 281 281 { … … 300 300 BOX_TRACE("Attribute Compare: Symbolic link target " 301 301 "or extended attributes differ: " 302 "local " << PrintEscapedBinaryData(s1) << ", "302 "local " << PrintEscapedBinaryData(s1) << ", " 303 303 "remote " << PrintEscapedBinaryData(s2)); 304 304 return false;
Note: See TracChangeset
for help on using the changeset viewer.
