Changeset 2839 for box/trunk/bin
- Timestamp:
- 09/01/2011 11:59:10 (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/bin/bbackupd/BackupClientDirectoryRecord.cpp
r2805 r2839 326 326 file_st.st_ino); 327 327 328 if(file_st.st_dev != dest_st.st_dev) 328 int type = file_st.st_mode & S_IFMT; 329 330 /* Workaround for apparent btrfs bug, where 331 symlinks appear to be on a different filesystem 332 than their containing directory, thanks to 333 Toke Hoiland-Jorgensen */ 334 if(type == S_IFDIR && 335 file_st.st_dev != dest_st.st_dev) 329 336 { 330 337 if(!(rParams.mrContext.ExcludeDir( … … 336 343 continue; 337 344 } 338 339 int type = file_st.st_mode & S_IFMT;340 345 #endif 341 346
Note: See TracChangeset
for help on using the changeset viewer.
