(Payload files of revisions 3169, 3170, 3171)

This commit is contained in:
2010-04-11 12:24:54 +00:00
parent f6ec684ab5
commit 0828b9521c
6 changed files with 71 additions and 11 deletions

View File

@ -126,11 +126,13 @@ int Compare_2_files(char *adr1, char *adr2, char *adrc, int flag)
differs= 1;
}
if(s1.st_uid != s2.st_uid) {
printf("%s : st_uid : %d <> %d\n", a, s1.st_uid, s2.st_uid);
printf("%s : st_uid : %d <> %d\n",
a, (int) s1.st_uid, (int) s2.st_uid);
differs= 1;
}
if(s1.st_gid != s2.st_gid) {
printf("%s : st_gid : %d <> %d\n", a, s1.st_gid, s2.st_gid);
printf("%s : st_gid : %d <> %d\n",
a, (int) s1.st_gid, (int) s2.st_gid);
differs= 1;
}
if((S_ISCHR(s1.st_mode) && S_ISCHR(s2.st_mode)) ||