Decided to put out uid_t and gid_t as unsigned long

This commit is contained in:
Thomas Schmitt 2010-04-12 11:12:43 +00:00
parent 4c91872b2a
commit 9832edf4a1
3 changed files with 9 additions and 9 deletions

View File

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

View File

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

View File

@ -1 +1 @@
#define Xorriso_timestamP "2010.04.11.122253" #define Xorriso_timestamP "2010.04.12.111137"