Avoided to read content of non-regular files

This commit is contained in:
Thomas Schmitt 2008-02-26 21:28:51 +00:00
parent e51ace31b1
commit dd4dd5e1e8
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ int Compare_2_files(char *adr1, char *adr2, char *adrc, int flag)
differs= 1;
}
}
if(S_ISREG(s1.st_mode)) {
if(S_ISREG(s1.st_mode) && S_ISREG(s2.st_mode)) {
fd1= open(adr1, O_RDONLY);
if(fd1==-1) {
printf("- %s : cannot open() : %s\n", adr1, strerror(errno));