|
|
|
@ -8093,15 +8093,15 @@ int Xorriso_compare_2_files(struct XorrisO *xorriso, char *disk_adr,
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if(s1.st_uid != s2.st_uid) { |
|
|
|
|
sprintf(respt, "%s st_uid : %d <> %d\n", a, |
|
|
|
|
(int) s1.st_uid, (int) s2.st_uid); |
|
|
|
|
sprintf(respt, "%s st_uid : %lu <> %lu\n", a, |
|
|
|
|
(unsigned long) s1.st_uid, (unsigned long) s2.st_uid); |
|
|
|
|
if(!(flag&(1<<31))) |
|
|
|
|
Xorriso_result(xorriso,0); |
|
|
|
|
(*result)|= 16; |
|
|
|
|
} |
|
|
|
|
if(s1.st_gid != s2.st_gid) { |
|
|
|
|
sprintf(respt, "%s st_gid : %d <> %d\n", a, |
|
|
|
|
(int) s1.st_gid, (int) s2.st_gid); |
|
|
|
|
sprintf(respt, "%s st_gid : %lu <> %lu\n", a, |
|
|
|
|
(unsigned long) s1.st_gid, (unsigned long) s2.st_gid); |
|
|
|
|
if(!(flag&(1<<31))) |
|
|
|
|
Xorriso_result(xorriso,0); |
|
|
|
|
(*result)|= 32; |
|
|
|
|