Home
last modified time | relevance | path

Searched refs:first_sb (Results 1 – 1 of 1) sorted by relevance

/dports/devel/desktop-file-utils/desktop-file-utils-0.26/src/
H A Dinstall.c104 struct stat first_sb; in files_are_the_same() local
107 if (stat (first, &first_sb) < 0) in files_are_the_same()
119 return ((first_sb.st_dev == second_sb.st_dev) && in files_are_the_same()
120 (first_sb.st_ino == second_sb.st_ino) && in files_are_the_same()
122 (first_sb.st_size == second_sb.st_size) && in files_are_the_same()
123 (first_sb.st_mtime == second_sb.st_mtime)); in files_are_the_same()